I'm new to Neo4j and wanted to perform vector/list related operations.
Going through APOC library and documentation.
Things which worked from me but is not scalable:
UNWIND(apoc.coll.zip([1,2,3], [4,5,6])) as output
RETURN COLLECT(apoc.coll.avg(outpu...