3matchvalid.mql 744 B

12345678910111213141516171819202122232425262728293031
  1. MATCH (a:/ootest/ooautomobile/)-[*]->( :/ootest/ootire where brand = '普利司通')
  2. /**
  3. output()
  4. match("graph.nodes.len", 45, "graph.edges.len", 40)
  5. **/
  6. ;
  7. MATCH (:/ootest/ooautomobile/)-[*]->(:/ootest/ where brand = '普利司通' or brand = '立中车轮')
  8. /**
  9. output()
  10. match("graph.nodes.len", 65, "graph.edges.len", 60)
  11. **/
  12. ;
  13. MATCH (:/ootest/ooautomobile/)-[*]->(:/ootest/ where brand = '普利司通' or brand = '正兴车轮')
  14. /**
  15. output()
  16. match("graph.nodes.len", 81, "graph.edges.len", 72)
  17. **/
  18. ;
  19. MATCH (:/ootest/ooautomobile/)-[*]->( :/ootest/ootire where brand = '普利司通'), (:/ootest/ooautomobile/)-[*]->( :/ootest/oorim where brand = '正兴车轮')
  20. /**
  21. output()
  22. match("graph.nodes.len", 81, "graph.edges.len", 72)
  23. **/
  24. ;