| 1234567891011121314151617 |
- match ("biz:查账系统")-[:contain*1]->()-[*]->("esx:*")-[*1]->('switch:*')
- /**
- match("graph.nodes.len",46)
- **/
- ;
- match (b:"biz:*")-[*]->(e:"esx:*")-[*1]->(s:"switch:*") short path b,e,s
- /**
- match("graph.paths.len",18)
- **/
- ;
- match ("biz:查账系统")-[:contain]->("cluster:查账系统web集群")-[*]->() until "switch:*"
- /**
- match("graph.nodes.len",18)
- **/
- ;
|