You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current expression logic allow access to attributes of the current node (or the current node itself via @). The request is to formalize access to a second object of “external parameter”, similar in spirit to the ability to parametrized jsonpath queries in PostgreSQL.
This should allow:
Employee.[[email protected])) // using special node reference
Employee.[?name=param(&name)) // With a function, or
Making it much easier to construct queries with dynamic parameters. Similar to placeholders in various sql dialect
The text was updated successfully, but these errors were encountered:
Current expression logic allow access to attributes of the current node (or the current node itself via @). The request is to formalize access to a second object of “external parameter”, similar in spirit to the ability to parametrized jsonpath queries in PostgreSQL.
This should allow:
Employee.[[email protected])) // using special node reference
Employee.[?name=param(&name)) // With a function, or
Making it much easier to construct queries with dynamic parameters. Similar to placeholders in various sql dialect
The text was updated successfully, but these errors were encountered: