groups-mutation-unassign.gql 217 B

123456789101112
  1. mutation ($groupId: Int!, $userId: Int!) {
  2. groups {
  3. unassignUser(groupId: $groupId, userId: $userId) {
  4. responseResult {
  5. succeeded
  6. errorCode
  7. slug
  8. message
  9. }
  10. }
  11. }
  12. }