| 1234567891011121314151617181920 |
- match ("biz_local:查账系统")-[:contain*1]->()-[*]->("esx_local:*")-[*1]->('switch_local:*')
- /**
- output()
- match("graph.nodes.len",46)
- **/
- ;
- match (b:"biz_local:*")-[*]->(e:"esx_local:*")-[*1]->(s:"switch_local:*") short path b,e,s
- /**
- output()
- match("graph.paths.len",18)
- **/
- ;
- match ("biz_local:查账系统")-[:contain]->("cluster_local:查账系统web集群")-[*]->() until "switch_local:*"
- /**
- output()
- match("graph.nodes.len",18)
- **/
- ;
|