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
CREATE (a{z:1}), (b{z:'a'}), (c{z:[1,2]}), (d)
MATCH (a) WHERE (1 in a.z) RETURN a
a.z is not a list, then I'm not sure what of the following options is the expected result:
Type mismatch error, because IN expects a list as argument.
Process each a.z individually, and if a.z is a list returns 1 in a.z, else return 1 = a.z
For the example above, the result would be: TRUE, FALSE, TRUE, NULL
Thanks in advance
The text was updated successfully, but these errors were encountered:
Hi, I have a question about the following query:
a.z
is not a list, then I'm not sure what of the following options is the expected result:1 in a.z
, else return1 = a.z
For the example above, the result would be:
TRUE
,FALSE
,TRUE
,NULL
Thanks in advance
The text was updated successfully, but these errors were encountered: