I have a graph database of personnel, and a separate CSV file containing a list of VIPs. The reason why the list of VIPs is in a standalone CSV file is because this list changes frequently, and will be updated by users not trained in Cypher.
I have the following syntax, which works in Neo4j desktop:
LOAD CSV WITH HEADER FROM "...\vip.csv" AS vips
WITH COLLECT(vips.id) AS vip
MATCH (p:Person)
WHERE p.id IN vip
RETURN p
However, when I use the exact same syntax in Neo4j Bloom's search phrases, it does not work.
So does "load csv" works in Neo4j bloom? Otherwise, is there anyway to get around this limitation? Thank you!