Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
10-18-2018 06:14 AM
Hi,
I'd like to generate an exportable table of all property keys and their property values for all nodes with the same label.
For example I would like to unwind keys() , and then place the values of these in the next column.
Do I need to use extract? Reduce?
Many thanks.
10-18-2018 09:07 AM
One way you could approach this is:
MATCH (l:Label)
UNWIND keys(l) as key
RETURN key,collect(distinct l[key])
All the sessions of the conference are now available online