Rank 3: Container
im getting an error of "document with the request ID could not be found" the thing is that it actually exists and im making sure im calling it correctly, all the env variables defined are correct so i dont know what could be happening
I don't know if this has to do with the recent problems with the appwrite cloud going offline or my code..
heres a little explanation of my code:
when a user fills the form on my app to create an account (im using expo react native) it makes the following things:
-
create the user on auth
-
grab the $id of the response auth and then creates a document inside a collection called "users" which has some info about that user
-
after the document in collection "users" is created, it then creates the plan document inside "plans" collection.
-
and finally it sets the response of the auth to a useState called "user"
then after the useState of the "user" is set, it runs another useEffect to get the user document inside "users" collection, and thats when the error is happening, it says that it doesnt exists, but i console log the id and everything looks like it does exists, so maybe is an appwrite cloud problem or my code? any idea?
