UpdateUserRoleInput
No description
input UpdateUserRoleInput {
  userID: ID!
  role: USER_ROLE!
  scoped: Boolean!
  clientMutationId: String!
}
Fields
UpdateUserRoleInput.userID ● ID! non-null scalar
userID is the ID of the User that should have their role updated.
UpdateUserRoleInput.role ● USER_ROLE! non-null enum
role is the
USER_ROLEthat the User should be set to.
UpdateUserRoleInput.scoped ● Boolean! non-null scalar
scoped is whether or not the role will be limited to specific sites or not.
UpdateUserRoleInput.clientMutationId ● String! non-null scalar
clientMutationId is required for Relay support.
Member Of
updateUserRole  mutation