| 12345678910111213141516171819 |
- match ("biz:查账系统")-[*]->("esx:esx1") attr=(name,status)
- match ("biz:查账系统")-[*]->("linux:linux[0-9]")-[*1]->("esx:esx[1-4]")
- match ("biz:查账系统")-[*]->("linux:*")-[*1]->("esx:esx4")
- match ("biz:查账系统")-[:contain*1]->()-[*]->("esx:*")-[*1]->('switch:*')
- match ("biz:查账系统")-[:contain*1]->()-[*]->("esx:*","linux:*")-[*1]->('switch:*')
- match ("biz:查账系统")-[:contain*1]->()-[*]->("esx:*","linux:*")-[*1]->('switch:*') until "sanswitch:*"
- match (b:"biz:*")-[*]->(e:"esx:*")-[*1]->(s:"switch:*") return name,status short path b,e,s
- match (b:"biz:*")-[*]->(e:"esx:*")-[*1]->(s:"switch:*") return name,status path b,e,s
- match ("linux:*")-[*1]->("esx:*")
- match ("biz:查账系统")-[:contain]->("cluster:查账系统web集群")-[*]->() until "switch:*"
- match ('biz:*')-[*10]->()
- match ("biz:B查账系统")-[:contain]->("cluster:B查账系统web集群")-[*]->() until "switch:*" back '2019-05-28 14:33:00'
- match ("biz:B查账系统")-[:contain]->("cluster:B查账系统web集群")-[*]->() until "switch:*" back '2019-05-28 14:34:00'
- match ("biz:B查账系统")-[:contain]->("cluster:B查账系统web集群")-[*]->() until "switch:*" diff '2019-05-28 14:33:00'
- match (m:"biz:查账系统")-[*]->(p:"linux:linux[1-5]")-[*]->(q:"esx:esx4") attr=(name,status)
|