Trying to list users except for some ids using this query
Query.limit(10000),
Query.orderDesc('$createdAt'),
Query.offset(0),
Query.isNull('labels'),
Query.lessThan('$createdAt', comparedDate.toUTCString()),
Query.notEqual('$id', [...ids])
but it returns, NotEqual queries require exactly one value I also tried with the phone field, but it has the same issue.
am I missing something here?
Recommended threads
- DeploymentStatus enum value `canceled` m...
Hey, Sorry if it has been reported already, I found an issue using the Dart SDK where the `canceled` enum value is missing from `DeploymentStatus`. This causes...
- Synchronous function execution timeout w...
I am calling server functions with xasync = true and I still get this error message. Synchronous function execution timed out. Use asynchronous execution inste...
- Flutter OAuth2 webAuth Bug?
I created with flutter an app where I can login in with my Microsoft Account. When I compile it to Web (WASM) or Android (aab) then there is no problem what so ...