Hello.
Can I get sum of properties in relationship list?
For example,
MATCH (c1:Company {name: ‘Apple’})-[r:hasVendor*]->(c2:Company)
RETURN c2.name, sum(r.marketShare);
But it makes error ‘type mismatch’ as blow.
Type mismatch: expected Map, Node, ...