777.uino.test.mql 719 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. select * from /uino/univ/college
  2. /**
  3. output()
  4. **/
  5. ;
  6. update /uino/univ/college set helloWord_HelloWord= { "_all": [
  7. "univ_teacher:fe05a11904b040f28e1cb653c3aeb1b4"
  8. ]
  9. } where id='univ_college:bcba0553bcc94104b41ff4b5ad10a387'
  10. ;
  11. select id,wheel["sise","color"] from /matrix/entity/car/camry c join ("camry:13")-[:collide*1]-(h) on c.id = h.id where wheel.screw.sise > 39
  12. /**
  13. output()
  14. **/
  15. ;
  16. select id,wheel["sise","color"] from /matrix/entity/car/camry where wheel.screw.sise > 39
  17. /**
  18. output()
  19. **/
  20. ;
  21. match (a:/uino/univ/research_center) - [:contain] -> (:/uino/univ/teacher)
  22. /**
  23. output()
  24. **/
  25. ;
  26. match (a:/uino/univ/research_center) - [:contain] -> (:/uino/univ/teacher) return a.name
  27. /**
  28. output()
  29. **/
  30. ;