mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
13 lines
193 B
Plaintext
13 lines
193 B
Plaintext
|
mutation ($id: Int!, $name: String!) {
|
||
|
groups {
|
||
|
update(id: $id, name: $name) {
|
||
|
responseResult {
|
||
|
succeeded
|
||
|
errorCode
|
||
|
slug
|
||
|
message
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|