Hi all,
I am trying to figure out exactly why there is a difference when returning in a node by itself vs returning all properties from a map projection.
Example:
a)
PROFILE MATCH (g:Group)
OPTIONAL MATCH (g)-[:GROUPS]->(u)
RETURN {group: g, user: co...