Hi there !
I'm trying to access a specific Document in a specific Collection within a Function.
But the Function keeps crashing telling me the Document with the requested ID could not be found
I'm sure the document exist and the collection ID (and DB ID) are good.
The thing is, there is no permission on the Collection as I want this collection to be only accessible with the admin rights of the Funciton (no user can access it).
Here is the code I used
const adminClient = new Client()
.setEndpoint(Bun.env['APPWRITE_FUNCTION_API_ENDPOINT'] as string)
.setProject(Bun.env['APPWRITE_FUNCTION_PROJECT_ID'] as string)
.setKey(Bun.env['x-appwrite-key'] as string);
const adminDatabase = new Databases(adminClient);
const prompt = await adminDatabase.getDocument(
DB,
PROMPTS,
documentID,
[Query.select(['content'])]
);
Again, I am sure that documentID exists in PROMPTS...
Is there a specific permission to add in this case ? I'm a bit lost in this.
Recommended threads
- Bug: Cloud Function On Schedule Didn't R...
Heya I have a cloud function with this cron `0 17 * * *` to run at 9AM PT every day. I have not touched this since I set it up, and it has been working fine s...
- functions
Code for function not being created in Github. Permissions are set correctly, repository is created, however no code is in the created repository. Just trying...
- Error 400: redirect_uri_mismatch
Hi team, Google OAuth was working fine with our Appwrite Cloud setup until yesterday. We did not change any configuration in Appwrite, Google Cloud, or our cod...