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
Hi @wey-gu , Is there nGQL equivalent of Cypher OPTIONAL MATCH?
Thanks
Since below cypher graph walk is vary slow, we want try using nGQL.
MATCH (p:Student)
WHERE id(p) IN [ ... ]
OPTIONAL MATCH (p)<-[:HAS_COURSE]-(a:CourseCodes)
OPTIONAL MATCH (p)<-[:STUDENT_HAS_SOCIAL]-(s:Social)
OPTIONAL MATCH (p)<-[:HAS_PROCEDURE]-(r:ProcedureCodes)
WITH
p,
COLLECT(DISTINCT a.CourseCodes.CodeId) as courses,
COLLECT(DISTINCT s.Social.AttributeId) as social,
COLLECT(DISTINCT r.ProcedureCodes.CodeId) as procedures
RETURN
p.Student.StudentId as Student,
p.Student.Gender as sex,
p.Student.Race as race,
p.Student.Ethnicity as ethnicity,
p.Student.MaritalStatus as maritalstatus,
diagnosis,
procedures,
social
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi @wey-gu , Is there nGQL equivalent of Cypher OPTIONAL MATCH?
Thanks
Since below cypher graph walk is vary slow, we want try using nGQL.
Beta Was this translation helpful? Give feedback.
All reactions