We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi. I asked this on discord already with no success for an answer. Maybe I got wrong what I found in the documents, but when I
{ int number = 5; try { List<string> queryList = new List<string>{ {Query.Equal("validated", false)}, {Query.Equal("language", lang)}, {Query.Limit(number)} } […] var quotes = await databases.ListDocuments( databaseId: databaseId, collectionId: collectionId, queries: queryList); return Results.Ok(quotes); }
returns 5 Documents where validated is false and language is (whatever is set in query parameter)
5
validated
false
language
(whatever is set in query parameter)
returns 274 documents. Where validated is false and language is (whatever was set in query parameter)
274
(whatever was set in query parameter)
Different version (specify in environment)
Linux
The Api (dotnet api project) runs on ubuntu 22.04.3 LTS and queries another machine running Appwrite 1.4.3 using dotnet-SDK 0.6.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
👟 Reproduction steps
Hi. I asked this on discord already with no success for an answer. Maybe I got wrong what I found in the documents, but when I
👍 Expected behavior
returns
5
Documents wherevalidated
isfalse
andlanguage
is(whatever is set in query parameter)
👎 Actual Behavior
returns
274
documents. Wherevalidated
isfalse
andlanguage
is(whatever was set in query parameter)
🎲 Appwrite version
Different version (specify in environment)
💻 Operating system
Linux
🧱 Your Environment
The Api (dotnet api project) runs on ubuntu 22.04.3 LTS and queries another machine running Appwrite 1.4.3 using dotnet-SDK 0.6.0
👀 Have you spent some time to check if this issue has been raised before?
🏢 Have you read the Code of Conduct?
The text was updated successfully, but these errors were encountered: