I need help in understanding the IN operator
In my following example:
MATCH (a1:Author)-[co:COAUTHOR]-(a2:Author) WHERE co.year IN [2017,2018,2019,2020] RETURN a1,co,a2
The operator tests every year every time in array to compute a MATCH OR tests e...