mutation

deleteUser

Verify OTP sent to mobile/email and delete the user's account.
Arguments
deleteApplicationUserRequestSchemaInput
DeleteApplicationUserRequestSchemaInput
Describes the request structure to delete the application user.
Response
success
Boolean
Whether the user deletion operation was successful.
Mutation
1mutation deleteUser(
2 $deleteApplicationUserRequestSchemaInput: DeleteApplicationUserRequestSchemaInput
3) {
4 deleteUser(
5 deleteApplicationUserRequestSchemaInput: $deleteApplicationUserRequestSchemaInput
6 ) {
7 success
8 }
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": true
4 }
5}