8 lines
168 B
GraphQL
8 lines
168 B
GraphQL
query GetCollectionChildrenIDs($collectionID: ID!, $cursor: String) {
|
|
collection(collectionID: $collectionID) {
|
|
children(cursor: $cursor) {
|
|
id
|
|
}
|
|
}
|
|
}
|