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
- Use Limits
I need urgent help, i use appwrite as a chat function for my website and my mobile android application, but recently, for the past 3 months, my database reaches...
- Method EQUAL not wrking in REST API Quer...
Request: ``` postman request 'https://nyc.cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/rows?queries[]={%22method%22%3A%22select%22%2C%22values%2...
- OIDC not working on Appwrite cloud
tl;dr: same project settings, same OIDC credentials. Auth works on self hosted but not in cloud. I have a project in my self hosted instance with a single web ...