wikijs-fork/client/graph/admin/groups/groups-mutation-update.gql

13 lines
193 B
Plaintext
Raw Normal View History

mutation ($id: Int!, $name: String!) {
groups {
update(id: $id, name: $name) {
responseResult {
succeeded
errorCode
slug
message
}
}
}
}