cypher-query-language
cypher-query-language copied to clipboard
VSCode syntax highlighting for Neo4j's Cypher Query Language
```RETURN apoc.map.merge({ a:1 }, {b:2})``` results in ``` RETURN apoc.map. MERGE ({ a:1 }, {b:2}) ``` after formatting the document. `merge` is wrongly treated as keyword in this case. I...
When formatting this... ``` LOAD CSV WITH HEADERS FROM 'file:///recent-lineage.csv' AS line WITH line ``` The output ends up like this... ``` LOAD CSV ///recent-lineage.csv' AS line WITH HEADERS FROM...
1. `MATCH (a:Person {uuid: 'abc'}), (b:Person {uuid: '123'})` becomes `MATCH (a:Person { uuid: 'abc' }), (b:Person {uuid: '123'})` (the spacing around the curly braces is only applied to the first...
Hi, whenever I use slavic characters they, are ignored by the syntax highlighter. It does result in not nice styling as for example here:  The following code does compile...
Whenever I paste the default "Create an index" `neo4j` basic query into a `.cypher` file, none of the keywords are highlighted:  It works fine...