ProductGroupSortKey
The set of valid sort keys for product group listings. This enum defines the available sorting options when retrieving product group data.
Enum Definition
enum ProductGroupSortKey {
TITLE
}Values
| Value | Description |
|---|---|
| TITLE | Sort product groups by title in alphabetical order |
Example
query {
productGroups(sortKey: TITLE, first: 10) {
edges {
node {
id
title
description
}
}
}
}