12 lines
184 B
GraphQL
12 lines
184 B
GraphQL
mutation CreateChildCollection(
|
|
$childTitle: String!
|
|
$collectionID: ID!
|
|
) {
|
|
createChildCollection(
|
|
childTitle: $childTitle
|
|
collectionID: $collectionID
|
|
) {
|
|
id
|
|
}
|
|
}
|