6 lines
136 B
GraphQL
6 lines
136 B
GraphQL
mutation CreateNewRootCollection($title: String!, $teamID: ID!) {
|
|
createRootCollection(title: $title, teamID: $teamID) {
|
|
id
|
|
}
|
|
}
|