099matchor.mql 921 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. MATCH (a:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通')
  2. /**
  3. output()
  4. match("graph.nodes.len", 45, "graph.edges.len", 40)
  5. **/
  6. ;
  7. MATCH (:/matrix/oo/automobile/)-[*]->(:/matrix/oo/ where brand = '普利司通' or brand = '立中车轮')
  8. /**
  9. output()
  10. match("graph.nodes.len", 65, "graph.edges.len", 60)
  11. **/
  12. ;
  13. MATCH (:/matrix/oo/automobile/)-[*]->(:/matrix/oo/ where brand = '普利司通' or brand = '正兴车轮')
  14. /**
  15. output()
  16. match("graph.nodes.len", 81, "graph.edges.len", 72)
  17. **/
  18. ;
  19. MATCH (:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通'), (:/matrix/oo/automobile/)-[*]->( :/matrix/oo/rim where brand = '正兴车轮')
  20. /**
  21. output()
  22. match("graph.nodes.len", 81, "graph.edges.len", 72)
  23. **/
  24. ;
  25. MATCH (a:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通')
  26. /**
  27. output()
  28. match("graph.nodes.len", 45, "graph.edges.len", 40)
  29. **/
  30. ;