Hi, I am trying to call apoc.es.post in an apoc.periodic.repeat call like this:
CALL apoc.periodic.repeat("updateElastic",
'CALL apoc.es.put("localhost", "some-index", "_doc", "test-id", null,
{id: "test-id", text: "test"})
YIELD value
RETURN value'...