The issue applies to both node and relationship properties. Numbers elsewhere in the string are handled correctly.
For example:
A Location node with property address: 123 Main Street will result in (n2:Location {address: 123 Main Street}) when exported to Cypher, whereas using address: Main Street will give (n2:Location {address: "Main Street"}).
This results in an invalid query.
The issue applies to both node and relationship properties. Numbers elsewhere in the string are handled correctly.
For example: A
Location
node with propertyaddress: 123 Main Street
will result in(n2:Location {address: 123 Main Street})
when exported to Cypher, whereas usingaddress: Main Street
will give(n2:Location {address: "Main Street"})
.Tested in Firefox and Chrome.