12 lines
215 B
GraphQL
12 lines
215 B
GraphQL
|
|
mutation CreateRESTChildUserCollection(
|
||
|
|
$title: String!
|
||
|
|
$parentUserCollectionID: ID!
|
||
|
|
) {
|
||
|
|
createRESTChildUserCollection(
|
||
|
|
title: $title
|
||
|
|
parentUserCollectionID: $parentUserCollectionID
|
||
|
|
) {
|
||
|
|
id
|
||
|
|
}
|
||
|
|
}
|