7 lines
97 B
GraphQL
7 lines
97 B
GraphQL
mutation CreateGroup($name: String!) {
|
|
createGroup(name: $name) {
|
|
id
|
|
displayName
|
|
}
|
|
}
|