You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOOKUP ON COVID19 YIELD id(vertex) as id | \
GO FROM $-.id OVER visit \
WHERE (visit.leaveTime - visit.arriveTime) >= 600000 \
YIELD visit._src AS src_id, visit._dst AS dst_id, visit.arriveTime AS arriveTime, visit.leaveTime AS leaveTime, visit.totalVisitTime AS totalVisitTime | \
GO FROM $-.dst_id OVER visit REVERSELY \
WHERE ((visit.arriveTime < $-.arriveTime AND visit.leaveTime - $-.arriveTime >= 600000) \
OR (visit.arriveTime >= $-.arriveTime AND visit.leaveTime <= $-.leaveTime AND visit.leaveTime - visit.arriveTime >= 600000) \
OR (visit.arriveTime >= $-.arriveTime AND visit.leaveTime > $-.leaveTime AND $-.leaveTime - visit.arriveTime >= 600000)) \
AND ($-.totalVisitTime >=108000000 OR visit.totalVisitTime >=108000000) \YIELD $-.src_id as src, visit._dst as dst;
profile:
stats:
The text was updated successfully, but these errors were encountered:
Introduction
nGQL:
profile:
stats:
The text was updated successfully, but these errors were encountered: