| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- select * from /uino/univ/college
- /**
- output()
- **/
- ;
- update /uino/univ/college set helloWord_HelloWord= { "_all": [
- "univ_teacher:fe05a11904b040f28e1cb653c3aeb1b4"
- ]
- } where id='univ_college:bcba0553bcc94104b41ff4b5ad10a387'
- ;
- 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
- /**
- output()
- **/
- ;
- select id,wheel["sise","color"] from /matrix/entity/car/camry where wheel.screw.sise > 39
- /**
- output()
- **/
- ;
- match (a:/uino/univ/research_center) - [:contain] -> (:/uino/univ/teacher)
- /**
- output()
- **/
- ;
- match (a:/uino/univ/research_center) - [:contain] -> (:/uino/univ/teacher) return a.name
- /**
- output()
- **/
- ;
|