
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
- Cloud UI doesn't show rows and columns o...
The new cloud UI seems dysfunctional, can see any of my data; on click it doesn't show the db data. doesn't let me choose how much data per page etc etc. Attach...
- This morning the project was deleted.
Hello, We had a project transfer a month ago and my customer told me that the project was deleted today. How can I get help for this. Yours sincerely,
- Database error
My code: await databases.createDocument( process.env.APPWRITE_DATABASE, process.env.APPWRITE_COLLECTION_USER, data.userId, ...
