Arguments
deleteApplicationUserRequestSchemaInput
DeleteApplicationUserRequestSchemaInputDescribes the request structure to delete the application user.
Response
success
BooleanWhether the user deletion operation was successful.
Mutation
1mutation deleteUser(2 $deleteApplicationUserRequestSchemaInput: DeleteApplicationUserRequestSchemaInput3) {4 deleteUser(5 deleteApplicationUserRequestSchemaInput: $deleteApplicationUserRequestSchemaInput6 ) {7 success8 }9}
Try it
Input Variables
1{2 "deleteApplicationUserRequestSchemaInput": {3 "otp": "otp",4 "reason": "reason",5 "reason_id": "reason_id",6 "request_id": "request_id",7 "user_id": "user_id"8 }9}
Response
1{2 "deleteUser": {3 "success": true4 }5}
Was this section helpful?