In one my database, my attribute for sid seems to no more than 32 characters. I am not sure what 768 limit is here. Can't find it in the docs either.
I need it to optimize fetch performance for my query here:
const { documents } = await databases.listDocuments(
DB_ID,
SESSIONS_COLLECTION,
[
Query.equal('sid', [sid]),
Query.orderDesc('$updatedAt'),
Query.limit(1)
]
);
Could someone help me please?
This is related to an issue where my project was blocked a couple of days ago - https://discord.com/channels/564160730845151244/1379470042198179940
Recommended threads
- TLS provisioning failure for custom doma...
Hi Appwrite team, we’re using Appwrite Sites and TLS provisioning for our custom domain fails. Domain: somnara.app Error: Failed to create TLS subscription –...
- Functions Problem
Whenever I run my AI Generate through Appwrite Functions, I am getting this Call Stack AIService.generateServer (src\services\ai\gemini.ts) next (<native>) ...
- Frequent 500 Internal Server Errors - Pr...
PROJECT ID: 6951f2xxxxx1ee9e750a REGION: Singapore (sgp.cloud.appwrite.io) PLAN: Pro Our production application experiences **500 Internal Server Errors** mult...