2023-11-07 08:31:00 +00:00
|
|
|
mutation CreateRESTChildUserCollection(
|
|
|
|
|
$title: String!
|
|
|
|
|
$parentUserCollectionID: ID!
|
2025-08-22 09:09:42 +00:00
|
|
|
$data: String
|
2023-11-07 08:31:00 +00:00
|
|
|
) {
|
|
|
|
|
createRESTChildUserCollection(
|
|
|
|
|
title: $title
|
|
|
|
|
parentUserCollectionID: $parentUserCollectionID
|
2025-08-22 09:09:42 +00:00
|
|
|
data: $data
|
2023-11-07 08:31:00 +00:00
|
|
|
) {
|
|
|
|
|
id
|
2025-08-22 09:09:42 +00:00
|
|
|
data
|
2023-11-07 08:31:00 +00:00
|
|
|
}
|
|
|
|
|
}
|