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
This my use case, I want return all values both null
I builded query with optional match but It is very slow and if number of graphs is too many then optional match will too many
match (v:A) -[e:A_B]-> (v2:B)
optional match(v2:B) -[e:B_E]-> (v3:E)
optional match(v2:B) -[e:B_F]-> (v4:F)
optional match (v:A) -[e:A_C]-> (v5:C)
return v, v2, v3, v4, v5
The text was updated successfully, but these errors were encountered:
This my use case, I want return all values both null
I builded query with optional match but It is very slow and if number of graphs is too many then optional match will too many
match (v:A) -[e:A_B]-> (v2:B)
optional match(v2:B) -[e:B_E]-> (v3:E)
optional match(v2:B) -[e:B_F]-> (v4:F)
optional match (v:A) -[e:A_C]-> (v5:C)
return v, v2, v3, v4, v5
The text was updated successfully, but these errors were encountered: