I am finishing up my app, and one of the last major things I have to implement is a way for users to delete their account. However, it seems like this is not possible right now? Creating/getting an account works fine by using the methods shown in the docs under the Account API using the React Native platform. But there doesn't seem to be a method for deleting an account. I see there is a delete identity, but when I tried it the account was still shown in the auth section. I see that under the Users section of the docs there is a delete user, but only for platforms under the server list. It seems like the way to do this for React Native is not implemented yet, but I figured I'd ask incase I am misunderstanding something? I am certainty new to both react native and appwrite so any help/clarity would be appreciated!
Recommended threads
- Rate Limit of project
AppwriteException: Rate limit for the current endpoint has been exceeded. Please try again after some time. So , how much time I have to wait and why does it h...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- Deep Linking & Password reset
I am using react native with expo. I want to implement deep link with the url recived via email. So when clicked the link it opens my app. I havent ever used de...