INPUT_OBJECT

DisableUserAccountInput

Inputs to the disableUserAccount mutation.

link GraphQL Schema definition

1input DisableUserAccountInput {
4
2# Reason for a user to disable their account.
3description: String
11
5# Permanently delete account.
6# false means account will be disabled and can be reenabled in the future.
7# true means the account will be disabled and will be permanently deleted after a
8# period of time.
9# default is false.
10isDelete: Boolean
15
12# The ID of the user to disable or delete.
13# Only the requester's user ID is allowed.
14userID: ID!
16}