Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
14 lines
256 B
GraphQL
14 lines
256 B
GraphQL
mutation CreateRESTChildUserCollection(
|
|
$title: String!
|
|
$parentUserCollectionID: ID!
|
|
$data: String
|
|
) {
|
|
createRESTChildUserCollection(
|
|
title: $title
|
|
parentUserCollectionID: $parentUserCollectionID
|
|
data: $data
|
|
) {
|
|
id
|
|
data
|
|
}
|
|
}
|