I'm using Neo4J API and I need to import an XML file. On Neo4j I successfully use the following procedure:
call
apoc.xml.import("myfile.xml")
yield node
return node;
but I do not know how to reproduce this function by Java API. As far as I know I have to use the procedures library, but since each function is buil-in I do not know how to reproduce this one. In the documentation is not mentioned, there are just few examples. So, is there a way to do the same by Java API?