Occasionally I need to use HTML character codes as a part of the query string, like ’ for ', and ] for ]. I know that there is a way to convert them back to the proper characters to be able to use Cypher, but is there a way to make Cypher automatically understand that? That would be neater.
So for example if my query is
match (n)-[r]-(m) where n.gid=’Cx’ and m.gid=’Cx’ return n,r,m
it will understand as
match (n)-[r]-(m) where n.gid='Cx' and m.gid='Cx' return n,r,m