I am executing Appwrite Function from react, getting below error for fetching data from table in function.
Code snippet where function throw this error:
const records = await database.listRows({ databaseId: config.appwrite.databaseId, tableId: config.collections.jobApply, queries: [Query.equal('candidateId', candidateId), Query.limit(5000)], });
Function details: Function is deployed with Node.js-22 on cloud. i am using "node-appwrite": "^19.0.0" in appwrite function.
error: AppwriteException: Route not found, Please ensure the endpoint is configured correctly and that the API route is valid for this SDK version.
Recommended threads
- I want my app data
Can anyone help me with this ?
- Import CSV via API (User Not Authorized)
I'm trying to import database data via CSV via API, however getting "The current user is not authorized to perform the requested action." after the API key has ...
- Adding records to DB with string [] and ...
when i enter records to the collection i do not see the records, but the app sees them. anyone can help me?