0180subquery2.mql 277 B

12345678910
  1. select xid,xprom,zid,zprom.time('2024-01-02','2024-01-04').find(name='mtz').max().min().avg().sum().count() from (
  2. match (x:mtx) -[:mtx_mtz]-> (z:mtz)
  3. return x.id as xid, z.id as zid, x.xprom as xprom, z.zprom as zprom
  4. ) where xid="mtx:x5" and zid="mtz:z5"
  5. /**
  6. output()
  7. **/
  8. ;