lldap/app/queries/create_group.graphql

7 lines
97 B
GraphQL
Raw Normal View History

2021-10-11 16:54:53 +00:00
mutation CreateGroup($name: String!) {
createGroup(name: $name) {
id
displayName
}
}