
Hi, i created one web app and wanted to create react native app with the same database. When i typed all the ids and code, i got this error. I checked the code multiple times and it is alright, checked the web app, when i used some commands, collection got updated. I thought that its because there are 2 apps on the same project as a free tier, so i created new one but i get the same mistake. I use free tier. Can anybody help asap?

Hello @terzo5655, can you share what you're trying to do and the code where the error happens?
Also, how are you accessing your db, are you using fetch, Appwrite's SDK, or another method?

This is how im getting data

useEffect(() => {
const timeoutId = setTimeout(async () => {
if (searchQuery.trim()) {
await loadMovies();
// Call updateSearchCount only if there are results
if (movies?.length! > 0 && movies?.[0]) {
await updateSearchCount(searchQuery, movies[0]);
}
} else {
reset();
}
}, 500);
return () => clearTimeout(timeoutId);
}, [searchQuery]);

What's the full error and network request being made? Would be curious what the response is from that request as well.
Recommended threads
- How do you strategically secure day's wo...
I worked entire day to try and solve how to use clerk such that it handles checking user's authentication purely server-side. I wasted entire day on a loop of a...
- `access_denied_to_user` - push new branc...
Why pushig new branch is not allowed? ``` git push origin fix-no_issue_id-fix_variable_name remote: {"auth_status":"access_denied_to_user","body":"Permission t...
- Appwrite realtime stopped working all of...
In our production environment, Appwrite Realtime suddenly stopped working and no updates are coming through , can you confirm if there are any known issues?
