mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
13 lines
217 B
GraphQL
13 lines
217 B
GraphQL
mutation ($groupId: Int!, $userId: Int!) {
|
|
groups {
|
|
unassignUser(groupId: $groupId, userId: $userId) {
|
|
responseResult {
|
|
succeeded
|
|
errorCode
|
|
slug
|
|
message
|
|
}
|
|
}
|
|
}
|
|
}
|