| 1234567891011121314151617181920212223242526272829303132333435 |
- -- MATCH (a:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通')
- -- /**
- -- output()
- -- **/
- -- ;
- -- MATCH (a)-[*]->( :/matrix/oo/rim where brand = '正兴车轮')
- -- /**
- -- output()
- -- **/
- -- ;
- -- MATCH (:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通'), (:/matrix/oo/automobile/)-[*]->( :/matrix/oo/rim where brand = '正兴车轮')
- -- /**
- -- output()
- -- **/
- -- ;
- -- MATCH (a:/matrix/oo/automobile/)-[*]->( :/matrix/oo/tire where brand = '普利司通'), (a)-[*]->( :/matrix/oo/rim where brand = '正兴车轮')
- -- /**
- -- output()
- -- **/
- -- ;
- MATCH ()-[*]->( :/matrix/ ) with timeout=5s
- /**
- output()
- **/
- ;
|