I have an array of multiple IDs of nodes to delete. Every Cypher example I can find either deletes one node or all nodes. How would one delete nodes that match an array of IDs, in a single query?
Something like this... (pseudocode):
MATCH (n:Node) WHERE (n.id in ['id_a', 'id_b']) DELETE n;