113subquery.mql 348 B

1234567891011121314151617
  1. 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
  2. /**
  3. output()
  4. **/
  5. ;
  6. select * from
  7. (
  8. 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
  9. )
  10. /**
  11. output()
  12. **/
  13. ;