| 12345678910111213141516171819202122232425262728293031 |
- MATCH (a:/ootest/ooautomobile/)-[*]->( :/ootest/ootire where brand = '普利司通')
- /**
- output()
- match("graph.nodes.len", 45, "graph.edges.len", 40)
- **/
- ;
- MATCH (:/ootest/ooautomobile/)-[*]->(:/ootest/ where brand = '普利司通' or brand = '立中车轮')
- /**
- output()
- match("graph.nodes.len", 65, "graph.edges.len", 60)
- **/
- ;
- MATCH (:/ootest/ooautomobile/)-[*]->(:/ootest/ where brand = '普利司通' or brand = '正兴车轮')
- /**
- output()
- match("graph.nodes.len", 81, "graph.edges.len", 72)
- **/
- ;
- MATCH (:/ootest/ooautomobile/)-[*]->( :/ootest/ootire where brand = '普利司通'), (:/ootest/ooautomobile/)-[*]->( :/ootest/oorim where brand = '正兴车轮')
- /**
- output()
- match("graph.nodes.len", 81, "graph.edges.len", 72)
- **/
- ;
|