| 12345678910111213141516171819202122232425262728 |
- match ("biz:查账系统")-[*]->("linux:linux[0-9]")-[*1]->(x:/m3entity/entity/esx)
- /**
- output()
- **/;
- match ("biz:查账系统")-[*]->("linux:linux[0-9]")-[*1]->("esx:esx[1-4]")
- /**
- output()
- **/;
- match ("biz:查账系统")-[*]->("linux:linux[0-9]")-[*1]->(x:/m3entity/entity/esx) return x.id, x.name, x.day
- /**
- output()
- count(12)
- **/;
- match ("biz:查账系统")-[*]->("linux:linux[0-9]")-[*1]->(x:/m3entity/entity/esx) return distinct x.id, x.name, x.day
- /**
- output()
- count(3)
- **/;
|