Currently I am a cypher query: MATCH (p:Person)--(c:City) RETURN p.name,c.name;
Which returns p.name, c.name alex, boston alex, brooklyn adam, cambridge However, I would like to augment this query to have it return: name, city1, city2 alex, boston, brooklyn adam, cambridge, null How would I do this? Or is this something best left to the application layer. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
