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
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here π I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- I recently applied for the free plan und...
I recently applied for the free plan under the GitHub Student Developer Pack. However, my billing status still shows $15, and it mentions that this amount will ...