
I'd like to check for boolean values, for example like this:
TypeScript
databaseId,
userCollectionId,
[
Query.and([
Query.equal("user_id", user.$id),
Query.equal("deleted", [false]),
]),
]
);```
I've found a matching support thread here, which showed that it works to just put in the value without any bracket and not as string, as far as i understood. But I am wondering if this the correct way, like if it would be mentioned in the docs, what would be written there? I'm unsure since chatGpt mentioned that Appwrite also uses this notation: ```[false]```
TL;DR
You can check for boolean values by inputting them without brackets or strings, like `Query.equal("deleted", false)`. While it may not be explicitly mentioned in the docs, this notation works fine as observed with Appwrite.Recommended threads
- Is it possible to initialize an Appwrite...
If I provide a project repository to someone, and within that repo there is an `appwrite.json`, is it possible to initialize the project in Appwrite from scratc...
- Appwrite Cloud - Rows get missing on Saf...
I have opened the appwrite console on my Safari. When I go to one of my project's database and then table, there are like 600+ rows and they often fail fetching...
- Cant set permission in console for organ...
Hi, I recently set up Appwrite on my server, and so far, it is awesome. Now I am trying to shift all my workflow to Appwrite. But I am facing one small issue. I...
