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
Part of #28
Broken out of #392
For example the following test fails as the filter does not support _and/_or.
func TestQueryInlineIntegerArrayWithsWithCountWithAndFilterAndPopulatedArray(t *testing.T) { test := testUtils.QueryTestCase{ Description: "Simple inline array, filtered count of integer array", Query: `query { users { Name _count(FavouriteIntegers: {filter: {_and: [{_gt: -2}, {_lt: 2}]}}) } }`, Docs: map[int][]string{ 0: { (`{ "Name": "Shahzad", "FavouriteIntegers": [-1, 2, -1, 1, 0, -2] }`)}, }, Results: []map[string]interface{}{ { "Name": "Shahzad", "_count": 4, }, }, } executeTestCase(t, test) }
The text was updated successfully, but these errors were encountered:
AndrewSisley
Successfully merging a pull request may close this issue.
Part of #28
Broken out of #392
For example the following test fails as the filter does not support _and/_or.
The text was updated successfully, but these errors were encountered: