| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- MATCH (a:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通')
- /**
- output()
- match("graph.nodes.len", 45, "graph.edges.len", 40)
- **/
- ;
- MATCH (:/matrix/oo/automobile/)-[*]->(:/matrix/oo/ where brand = '普利司通' or brand = '立中车轮')
- /**
- output()
- match("graph.nodes.len", 65, "graph.edges.len", 60)
- **/
- ;
- MATCH (:/matrix/oo/automobile/)-[*]->(:/matrix/oo/ where brand = '普利司通' or brand = '正兴车轮')
- /**
- output()
- match("graph.nodes.len", 81, "graph.edges.len", 72)
- **/
- ;
- MATCH (:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通'), (:/matrix/oo/automobile/)-[*]->( :/matrix/oo/rim where brand = '正兴车轮')
- /**
- output()
- match("graph.nodes.len", 81, "graph.edges.len", 72)
- **/
- ;
- MATCH (a:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通')
- /**
- output()
- match("graph.nodes.len", 45, "graph.edges.len", 40)
- **/
- ;
|