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
Query: SELECT * FROM . WHERE age < 30
SELECT * FROM . WHERE age < 30
{ "one":{ "name":"John", "age":28 }, "two":{ "name":"Jane", "age":30 }, "three":{ "name":"Tom", "age":28 } }
Result:
{ "one":{ "name":"John", "age":28 }, "three":{ "name":"Tom", "age":28 } }
The text was updated successfully, but these errors were encountered:
I am also wondering if this is supported at this time
With input like {"a": {"x": 1, "b2"}}
{"a": {"x": 1, "b2"}}
I tried with .From("a").Where("x", '=", 1).Get() with no results.
.From("a").Where("x", '=", 1).Get()
..or if i have missed or misunderstood docs. Looking closer looks like Where wants array context somewhere
Sorry, something went wrong.
Yes, you are right.Where will work on array context
Where
..but also, to be clear:Where will NOT work in single object context (as illustrated above)?
Where can i help here? :P
..but also, to be clear:Where will NOT work in single object context (as illustrated above)? Where can i help here? :P
If you want to send PR to solve the problem you are welcome
opened #57
thedevsaddam
No branches or pull requests
Query:
SELECT * FROM . WHERE age < 30
Result:
The text was updated successfully, but these errors were encountered: