Does anyone ever used Neo4j apoc.periodic.repeat function to publish message to kafka? Here is what I have now:
I have a working query to send message to my kafka topic:
CALL streams.publish("my-neo4j-topic", "Hello World from Neo4j!")
However, when...