10 lines
183 B
GraphQL
10 lines
183 B
GraphQL
query {
|
|
getProductGroups(input: { take: 10 }) {
|
|
items {
|
|
phxId: id
|
|
id: identifier
|
|
name: description
|
|
parent_id: parentId #not the identifier id
|
|
}
|
|
}
|
|
} |