Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
05-07-2022 06:03 AM
I want to get the list form of the result of match and use the result to do the following logic judgement...
But how can I get the list form from "match" result? it seems to be the single node satisfied the given pattern.
E.g.
match(n:things)
node with things label has property name, how can I get the n.name in list format?
Solved! Go to Solution.
05-07-2022 10:46 AM
05-07-2022 10:46 AM
Try this:
match(n:things)
return collect(distinct n.name)
05-08-2022 05:57 PM
thank you
it works
All the sessions of the conference are now available online