so i have a cypher query that returns a json formated values in when using neo4j browser as follows:
Model: Restaurant ->in_plaza->Plaza
Cypher Query:
MATCH r=(p:Plaza)-[:in_plaza]->(rs:Restaurant) WITH COLLECT(r) AS rs CALL apoc.convert.toTree(rs, t...