Hi,
I'm experimenting with with the Kafka / Confluent Neo4j-Sink-Connector. What i wanted to achieve is to send data from MongoDB via Kafka to Neo4j. So far I have succeeded in merging and creating simple nodes and relationships with properties.
However when I tried to call an apoc function like apoc.merge.relationships to dynamically choose my reltype depending on the content of a specific field in my mongodb nothing happens. Even a simple "CALL apoc.create.node (,{})" cypher template which should create a blank node every time neo4j receives a message from kafka produces no result.
As I can produce nodes with MERGE and CREATE I assume that the connection is working properly.
Has anyone succeeded in integrating apoc procedures in their kafka cypher-templates or is this a feature which is not supported?