1

Is there is way that i could subscribe to events from neo4j and listen to neo4j triggers that made using APOC (like add/update/delete etc) events in c# neo4j driver .

Any help is appreciated. Thanks in advance.

user1844634
  • 1,221
  • 2
  • 17
  • 35

1 Answers1

1

You can create triggers with APOC on the database side, but to receive events directly in your c# code is not possible out of the box.

For that you can install a Kafka, and thanks to the Neo4j Kafka plugin, Neo4j can send messages to a Kafka topic when there is change in the database.

logisima
  • 7,340
  • 1
  • 18
  • 31