773.mql 670 B

1234567891011121314151617181920212223242526272829303132333435
  1. -- MATCH (a:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通')
  2. -- /**
  3. -- output()
  4. -- **/
  5. -- ;
  6. -- MATCH (a)-[*]->( :/matrix/oo/rim where brand = '正兴车轮')
  7. -- /**
  8. -- output()
  9. -- **/
  10. -- ;
  11. -- MATCH (:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通'), (:/matrix/oo/automobile/)-[*]->( :/matrix/oo/rim where brand = '正兴车轮')
  12. -- /**
  13. -- output()
  14. -- **/
  15. -- ;
  16. -- MATCH (a:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通'), (a)-[*]->( :/matrix/oo/rim where brand = '正兴车轮')
  17. -- /**
  18. -- output()
  19. -- **/
  20. -- ;
  21. MATCH ()-[*]->( :/matrix/ ) with timeout=5s
  22. /**
  23. output()
  24. **/
  25. ;