
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
- Oauth2-Error 400Invalid `success` param:...
My code: > await new Account(client).createOAuth2Session(OAuthProvider.Google, 'https://www.mydomain.online/home', 'https://www.mydomain.online'); I ha...
- Issue with Appwrite Function Execution –...
Hi all, I'm encountering an issue when calling an Appwrite function from my Flutter app. **Environment:** ```Flutter SDK: 3.27.3 Appwrite Flutter SDK: 16.1.0```...
- Storage server error
Hi! When I try to upload a video to Appwrite Storage, it gives me this error (it works with images but not with videos): ```[AppwriteException: Server Error]``...
