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
When exporting data as JSON from the Neo4j Browser UI, backslashes in the data are not escaped, resulting in invalid JSON.
Create a node with a property that contains a backslash:
CREATE ({name:"AC\\DC"})
Retrieve the property:
MATCH (n) RETURN n.name AS name
Note that in the UI, the name is shown correctly: "AC\DC"
"AC\DC"
Click on 'Export JSON'
The exported JSON is invalid because the backslash isn't escaped:
[ { "name": "AC\DC" } ]
The exported JSON should escape the backslash:
[ { "name": "AC\\DC" } ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When exporting data as JSON from the Neo4j Browser UI, backslashes in the data are not escaped, resulting in invalid JSON.
Steps to reproduce
Create a node with a property that contains a backslash:
Retrieve the property:
Note that in the UI, the name is shown correctly:
"AC\DC"
Click on 'Export JSON'
The exported JSON is invalid because the backslash isn't escaped:
Expected behavior
The exported JSON should escape the backslash:
The text was updated successfully, but these errors were encountered: