Check whether nodes exist in a neo4j graph
问题 NOTE I let this become several questions instead of the simple one I asked, so I am breaking the follow-ups off into their own question here. ORIGINAL QUESTION I'm receiving a list of IDs that I am first testing whether any of them are in my graph, and if they /are/ I am processing those nodes further. So, for example... fids = get_fids(record) # [100001, 100002, 100003, ... etc] ids_in_my_graph = filter(id_is_in_graph, fids) # [100002] def id_is_in_graph(id): val = False query = """MATCH