| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- match ("cypher2:e2")-[:connect]-("cypher:e1")
- /**
- output()
- metainfo()
- matchcount("graph.edges.len", 1, "graph.edges.0.source", "cypher:e1", "graph.edges.0.target", "cypher2:e2", 1)
- **/
- ;
- match ("cypher:e1")<-[:connect]-("cypher2:e2")
- /**
- output()
- metainfo()
- matchcount("graph.edges.len", 1, "graph.edges.0.source", "cypher:e1", "graph.edges.0.target", "cypher2:e2", 0)
- **/
- ;
- match ("cypher2:e2")-[:connect]->("cypher:e1")
- /**
- output()
- metainfo()
- matchcount("graph.edges.len", 1, "graph.edges.0.source", "cypher:e1", "graph.edges.0.target", "cypher2:e2", 0)
- **/
- ;
- match ("cypher:e1")-[:connect]->("cypher2:e2")
- /**
- output()
- metainfo()
- matchcount("graph.edges.len", 1, "graph.edges.0.source", "cypher:e1", "graph.edges.0.target", "cypher2:e2", 1)
- **/
- ;
- match ("cypher2:e2")<-[:connect]-("cypher:e1")
- /**
- output()
- metainfo()
- matchcount("graph.edges.len", 1, "graph.edges.0.source", "cypher:e1", "graph.edges.0.target", "cypher2:e2", 1)
- **/
- ;
- match ("cypher:e1")-[:connect]-("cypher2:e2")
- /**
- output()
- metainfo()
- matchcount("graph.edges.len", 1, "graph.edges.0.source", "cypher:e1", "graph.edges.0.target", "cypher2:e2", 1)
- **/
- ;
- match ("cypher2:e2")-[:connect]-("cypher:e1")
- /**
- output()
- metainfo()
- matchcount("graph.edges.len", 1, "graph.edges.0.source", "cypher:e1", "graph.edges.0.target", "cypher2:e2", 1)
- **/
- ;
|