You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The export commands in cypher are not working when I run them in neo4j for desktop. I'm using neo4j version 5.2.0. All of the export commands result in the following error :
"Neo.ClientError.Statement.SyntaxError" Invalid input '(': expected "allShortestPaths" or "shortestPath" (line 1, column 8 (offset: 7)).
The exported cypher looks like the following:
CREATE ('OPCD Requirement':Model:NCIP)-[:Generalized_by]->('OPCD Sub Category':NCIP)-[:Type_of]->('OPCD Requirement')-[:Allocated_to]->(CE:Model:MWA:NCIP:Intel)-[:Parent_of]->(CEV:Model:MWA:NCIP:Intel)-[:Child_of]->(CE)-[:Supports]->(MEF:Model:MWA:Intel)-[:Supported_by]->(CE)-[:Score_Aggregation]->(:NCIP)<-[:Part_of]-('NCIP Quad':NCIP)<-[:_RELATED]-('NCIP Key Initiative':NCIP),
The text was updated successfully, but these errors were encountered:
It does work for me. As inidicated the 'OPCD Requirement' is invalid at that position in cypher.
This is a bug, because arrows should export the space in a different way.
There is a very simple workaround: Do not use space in ... (caption?) CREATE (OPCD_Requirement:Model:NCIP) -[:Generalized_by]->(OPCD_Sub_Category:NCIP) -[:Type_of]->(OPCD_Requirement) -[:Allocated_to]->(CE:Model:MWA:NCIP:Intel) -[:Parent_of]->(CEV:Model:MWA:NCIP:Intel) -[:Child_of]->(CE) -[:Supports]->(MEF:Model:MWA:Intel) -[:Supported_by]->(CE) -[:Score_Aggregation]->(:NCIP) <-[:Part_of]-(NCIP_Quad:NCIP) <-[:_RELATED]-(NCIP_Key_Initiative:NCIP)
The export commands in cypher are not working when I run them in neo4j for desktop. I'm using neo4j version 5.2.0. All of the export commands result in the following error :
"Neo.ClientError.Statement.SyntaxError" Invalid input '(': expected "allShortestPaths" or "shortestPath" (line 1, column 8 (offset: 7)).
The exported cypher looks like the following:
CREATE ('OPCD Requirement':Model:NCIP)-[:Generalized_by]->('OPCD Sub Category':NCIP)-[:Type_of]->('OPCD Requirement')-[:Allocated_to]->(CE:Model:MWA:NCIP:Intel)-[:Parent_of]->(CEV:Model:MWA:NCIP:Intel)-[:Child_of]->(CE)-[:Supports]->(MEF:Model:MWA:Intel)-[:Supported_by]->(CE)-[:Score_Aggregation]->(:NCIP)<-[:Part_of]-('NCIP Quad':NCIP)<-[:_RELATED]-('NCIP Key Initiative':NCIP),
The text was updated successfully, but these errors were encountered: