19graph_match.mql 365 B

1234567891011121314151617
  1. match ("biz:查账系统")-[:contain*1]->()-[*]->("esx:*")-[*1]->('switch:*')
  2. /**
  3. match("graph.nodes.len",46)
  4. **/
  5. ;
  6. match (b:"biz:*")-[*]->(e:"esx:*")-[*1]->(s:"switch:*") short path b,e,s
  7. /**
  8. match("graph.paths.len",18)
  9. **/
  10. ;
  11. match ("biz:查账系统")-[:contain]->("cluster:查账系统web集群")-[*]->() until "switch:*"
  12. /**
  13. match("graph.nodes.len",18)
  14. **/
  15. ;