112cypher.mql 483 B

123456789101112131415161718192021222324252627
  1. -- match (a:"cypher:e1")-[:connect]->(b:"cypher2:e2")
  2. -- /**
  3. -- output()
  4. -- **/
  5. -- ;
  6. -- match (a:"cypher:e1")-[:connect]->(b:"cypher2:e2") with fields="day,vtime" return a.id as aid, a.name as aname , b.id as bid, b.name as bname
  7. -- /**
  8. -- output()
  9. -- **/
  10. -- ;
  11. match (a:"cypher:e1")-[:connect]->(b:"cypher2:e2") with fields="day,vtime" return a.id as aid, a.name as aname , b.id as bid, b.name as bname into temp001
  12. /**
  13. output()
  14. **/
  15. ;
  16. select * from temp001
  17. /**
  18. output()
  19. **/
  20. ;