GetCollectionChildrenIDs.graphql 168 B

1234567
  1. query GetCollectionChildrenIDs($collectionID: ID!, $cursor: String) {
  2. collection(collectionID: $collectionID) {
  3. children(cursor: $cursor) {
  4. id
  5. }
  6. }
  7. }