Hello,
here is my code:
match (c:People)-[:LIKES]->(a:Object{objectName:'Skittles'})
WITH collect(c) as set1
match (d:People)-[: LIKES]->(a: Object{objectName:'Cheerios'})
WITH collect(d) as set2
RETURN apoc.coll.intersection(set1, set2) as set3
when...