I am trying to query a datetime attribute that can be null. For my search I want the query to return all projects after a given date (greaterThanEqual) or isNull. So far I cannot see how I can build a query like this, since the Queries are connected via AND and only in a Query itself things can be logically connected via OR.
You can use two separate queries for now. Also, linking a related issue: https://github.com/appwrite/appwrite/issues/2740
Alright thanks
I want to implement it in a function but it seems like there is no Query.isNull there... At least the compiler does not know it 😅
Can isNull only be used by the client?
I am using dart_appwrite: ^7.1.0
Yes thats the problem. I updated to 8.0.0 and it compiled correctly 👍
Recommended threads
- Local appwrite run functions --user-id n...
Hi, I'm running into an issue when testing Appwrite functions locally with user impersonation. I'm using a self-hosted Appwrite instance and running functions ...
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Function domain not available
Hello, even tho in docs you clearly describe that every function has its domain, I can not see it anywhere in any of my projects. How do I reveal the url of th...