PingGhostOriginal post
Rank 1: Thread
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?
Summary
Developers are encountering an issue with NotEqual queries in their code while trying to query users with certain IDs excluded. The error message "NotEqual queries require exactly one value" is being returned. To resolve this, ensure that the NotEqual query is only passing one value at a time instead of an array of IDs.