I'm pretty sure that I've done this before, but my internet brain is not being useful today.
I need to do something like this:
WITH ("a","b","c") AS master_list
MATCH (thing:Thing {ID: "test"})-[:HAS]->(anotherthing:Thing)
WITH master_list, thing, co...