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
For query generation, it may be useful to have undirected relationships at the query stage; i.e., a bidirectional relationship is represented by just one directed relationship in Cypher, but the query is executed without an angled bracket, -[]- instead of -[]->. This is recommended by Neo4j.
To implement, we would change the query generation to reflect this, iff either the source and target annotation in the schema config are missing, or the field undirected is set to true, explicitly.
The text was updated successfully, but these errors were encountered:
For query generation, it may be useful to have undirected relationships at the query stage; i.e., a bidirectional relationship is represented by just one directed relationship in Cypher, but the query is executed without an angled bracket,
-[]-
instead of-[]->
. This is recommended by Neo4j.To implement, we would change the query generation to reflect this,
iff
either thesource
andtarget
annotation in the schema config are missing, or the fieldundirected
is set totrue
, explicitly.The text was updated successfully, but these errors were encountered: