
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
- Cannot Set Up Custom Domain: Requested h...
I just migrated to a new region, and I'm trying to set up a new subdomain to use with Appwrite. However, I get the following error: ``` Requested host does no...
- Internal server error with wifi but not ...
When i am using wifi to open my project in appwrite i am getting internal server error but when i use my mobile network it's working fine what should i do to ma...
- Switched a project to a different organi...
I recently switched my project to another organization but all the Data I had in Form of Buckets, Databases, Keys, Users, etc. aren't being shown. However I can...
