-- 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() **/ ;