
Query.between('bookingStart', date.toIso8601String(),
date.add(const Duration(days: 1)).toIso8601String()),

Are you running against the cloud?

between
was added in version 1.3.0

It won't work with the cloud just yet

ohh I see so how can I query date?


I have calendar picker when I want to pick date then I have to fetch all document that have the same date

Use graterThan
or lessThan
queries

Query.greaterThanEqual('bookingStart', date.toIso8601String()),
Query.lessThanEqual(
'bookingStart', date.add(const Duration(days: 1)).toIso8601String()),

not working

I can recreate it tomorrow to check if it won't get solved be then

[SOLVED] (Query method not valid: between)

Just for the record, there is an issue for this: https://github.com/appwrite/appwrite/issues/5650
Recommended threads
- 2 Columns still processing since yesterd...
Hey o/ Yesterday (around <t:1758045600:f>), I created a database and added several columns to it. After about 15 minutes, most of the "processing" tags disappe...
- 503 Timeout when Updating or Upserting D...
Hey Iβm running into an issue when trying to update or upsert a row in Appwrite. The request hangs for a while and then throws this error: ``` AppwriteException...
- Row with the requested ID already exists...
Iβm hitting a blocking issue creating rows in Appwrite (both from the console and my React Native app). After successfully inserting the first row, every subseq...
