YABGSMS

Delete a user

You can delete a user using an admin token, given the user's ID

Running the following GraphQL query:

mutation {
  deleteUserSuccess: deleteUser(id: $id)
}

where $id is the user's ID to delete. On success this will return

{
  "data": {
    "deleteUserSuccess": true
  }
}