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
- edu email
my edu email is my seccondary email for github and when i signed in i dont think its registering i have an edu email using githubs education pack anyone know ho...
- CORS errors in Obsidian custom plugin
Hi, anyone here familiar with obsidian community plugins? In short: it's a local first note app which supports writing your own add-ons / plugin But I keep get...
- > AppwriteException: The requested servi...
When trying to read or write from my database I get the following error: > AppwriteException: The requested service is disabled. You can enable the service from...