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
A simple reproducible example showing the bug:
.bolt file: path /test/{x} is String{ validate() { this.parent()[prior(this)] == x } } .json file produced: { "rules": { "test": { "$x": { ".validate": "(newData.isString() && newData.parent().child(data).val() == $x)" } } } } .json file expected: { "rules": { "test": { "$x": { ".validate": "(newData.isString() && newData.parent().child(data.val()).val() == $x)" } } } } Inside the child function data.val() should be present. When I remove the prior(), the result is newData.val() as expected.
path /test/{x} is String{ validate() { this.parent()[prior(this)] == x } }
{ "rules": { "test": { "$x": { ".validate": "(newData.isString() && newData.parent().child(data).val() == $x)" } } } }
{ "rules": { "test": { "$x": { ".validate": "(newData.isString() && newData.parent().child(data.val()).val() == $x)" } } } }
The text was updated successfully, but these errors were encountered:
To add a similar issue where .val() is not added:
.val()
path /{project_uuid} { read() { projectMatch(this.parent_uuid) } } function projectMatch(parent_uuid) { return ( auth != null && parent_uuid != null && auth[parent_uuid] != null ); }
The last line compiles into:
auth[data.child('parent_uuid')] != null
instead of
auth[data.child('parent_uuid').val()] != null
Sorry, something went wrong.
No branches or pull requests
A simple reproducible example showing the bug:
.bolt file:
path /test/{x} is String{ validate() { this.parent()[prior(this)] == x } }
.json file produced:
{ "rules": { "test": { "$x": { ".validate": "(newData.isString() && newData.parent().child(data).val() == $x)" } } } }
.json file expected:
{ "rules": { "test": { "$x": { ".validate": "(newData.isString() && newData.parent().child(data.val()).val() == $x)" } } } }
Inside the child function data.val() should be present.
When I remove the prior(), the result is newData.val() as expected.
The text was updated successfully, but these errors were encountered: