GetCollectionChildren.graphql 176 B

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