match (a:User {name: "Some Name"}), (b)<-[:rel1]-(a), (c)<-[:rel2]-(a) return a.id as id, a.name as name, collect(apoc.map.fromValues(["key1", b.value1, "key2", b.value2])) as aray, collect (c.prop) as property
for the last 2 collect(), I get the sam...