601glob通配支持.mql 492 B

12345678910111213141516171819202122232425262728
  1. match ("biz:查账系统")-[*]->("linux:linux[0-9]")-[*1]->(x:/m3entity/entity/esx)
  2. /**
  3. output()
  4. **/;
  5. match ("biz:查账系统")-[*]->("linux:linux[0-9]")-[*1]->("esx:esx[1-4]")
  6. /**
  7. output()
  8. **/;
  9. match ("biz:查账系统")-[*]->("linux:linux[0-9]")-[*1]->(x:/m3entity/entity/esx) return x.id, x.name, x.day
  10. /**
  11. output()
  12. count(12)
  13. **/;
  14. match ("biz:查账系统")-[*]->("linux:linux[0-9]")-[*1]->(x:/m3entity/entity/esx) return distinct x.id, x.name, x.day
  15. /**
  16. output()
  17. count(3)
  18. **/;