Is it possible to create an index on objects inside list properties of Neo4j?
Lets say I have a bunch of Nodes
unwind range(1,100) as num CREATE (n:Person {current_id:num,old_id:[]});
call apoc.coll.zipToRows(range(1,100),range(200,300)) yield value ...