import { Databases, Query } from "node-appwrite";
...
const documents = await this.databases.listDocuments(
databaseId,
featureToggleCollectionId,
[Query.equal("featureName", featureName)],
);
This specific piece of code is returning cached results. How can we disable the cache that seem to be inside the appwrite dependency within my Next.js project?
Note that the surrounding code is** not cached** 🔥
How to disable appwrite's function cache in Next.js?
Recommended threads
- Sudden CORS Errors - Domain hasn't Chang...
I have an Appwrite project with two web apps configured, the first one has the hostname `*` and the second one I just added to test if it could fix the issue wi...
- Any way to temporarily bypass the email ...
Hey guys, any way to bypass the email verification to use the accounts again? i need to recover some projects that due to recent changes have been stopped, and ...
- Collections list not showing up when try...
I'm trying to create new relationship attribute but both one way and two way relationship is not showing up collections list to connect with my relationship att...