CreateChildCollection.graphql 184 B

1234567891011
  1. mutation CreateChildCollection(
  2. $childTitle: String!
  3. $collectionID: ID!
  4. ) {
  5. createChildCollection(
  6. childTitle: $childTitle
  7. collectionID: $collectionID
  8. ) {
  9. id
  10. }
  11. }