Co-authored-by: Vivek R <123vivekr@gmail.com> Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
12 lines
213 B
GraphQL
12 lines
213 B
GraphQL
mutation CreateGQLChildUserCollection(
|
|
$title: String!
|
|
$parentUserCollectionID: ID!
|
|
) {
|
|
createGQLChildUserCollection(
|
|
title: $title
|
|
parentUserCollectionID: $parentUserCollectionID
|
|
) {
|
|
id
|
|
}
|
|
}
|