const response = await databases.listDocuments(
DATABASEID,
COLLECTIONID_MESSAGES,
[
Query.equal('from_user',user.$id),
]
);
expected: I should recive some documents but it is not happening recieved : Uncaught (in promise) AppwriteException: Invalid query: {"method":"equal","attribute":"from_user","values":["6615616bc019b68f002b"]}
My current version : appwrite 13.0.2 mac OS #🗂│support
Appwrite Cloud or Self Hosted?
Assuming this is the same as this thread - https://github.com/appwrite/appwrite/issues/7944
Recommended threads
- self-hosted auth: /v1/account 404 on saf...
Project created in React/Next.js, Appwrite version 1.6.0. Authentication works in all browsers except Safari (ios), where an attempt to connect to {endpoint}/v1...
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...