cypher-query-language icon indicating copy to clipboard operation
cypher-query-language copied to clipboard

VSCode syntax highlighting for Neo4j's Cypher Query Language

Results 5 cypher-query-language issues
Sort by recently updated
recently updated
newest added

```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: ![image](https://user-images.githubusercontent.com/65667935/202873156-97630311-cbac-46b6-bc2b-befbec37348b.png) 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: ![Cypher query with no syntax highlighting](https://user-images.githubusercontent.com/17814535/199131296-172fcad8-e234-4ccd-ac6c-fc16b47c2369.png) It works fine...