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
In try.jsonata.org, the following evaluate identically as a way of demoting the entire source object into a field.
{ "event":$[0] }
...and...
{ "event":$[] }
...are equivalent to...
{ "event":$ }
In jsonata-go, $[0] does what one would expect, but the others do not.
The text was updated successfully, but these errors were encountered:
Feature/eval (blues#10)
4276483
* add eval functionality * a more fancy eval * fixes * fully fleshed out eval * update --------- Co-authored-by: tbal999 <tom@fern91.com>
No branches or pull requests
In try.jsonata.org, the following evaluate identically as a way of demoting the entire source object into a field.
{
"event":$[0]
}
...and...
{
"event":$[]
}
...are equivalent to...
{
"event":$
}
In jsonata-go, $[0] does what one would expect, but the others do not.
The text was updated successfully, but these errors were encountered: