14 lines
254 B
GraphQL
14 lines
254 B
GraphQL
mutation CreateGQLChildUserCollection(
|
|
$title: String!
|
|
$parentUserCollectionID: ID!
|
|
$data: String
|
|
) {
|
|
createGQLChildUserCollection(
|
|
title: $title
|
|
parentUserCollectionID: $parentUserCollectionID
|
|
data: $data
|
|
) {
|
|
id
|
|
data
|
|
}
|
|
}
|