I am running a local instance of neo4j ("Community" edition) on a Windows 10 laptop. My client is in Java and uses the REST API (via port 7474) to talk with the neo4j database.
QUESTION: is there some way to get the equivalent of a MERGE/CREATE
directive in cypher to happen via the REST API call to /db/data/node
endpoint?
I'm guessing that I could impose a unique constraint on different node types and achieve the desired behavior. But out of the box, what I am hoping for is a single endpoint -- Eg, /db/data/node
-- which either creates or merges the inbound data with any existing nodes in the graph.