I am trying to connect mongodb data to neo4j.
I tried with this code "CALL apoc.mongodb.get('mongodb://localhost:27017','test','test',{name:'testDocument'})" in Neo4j.
But I get an error as
There is no procedure with the name apoc.mongodb.get
registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.
I had added APOC jar files in Neo4j plugins and I gone through this link http://indexoutofrange.com/Neo4jStoredProceduresWindows/
still Iam unable to connect. can someone please explain what shall i do to get this started. Thanks
CALL dbms.procedures()
? Do you seeapoc.mongodb.get
in the list? – William Lyonapoc.mongodb.get
: Caused by: java.lang.RuntimeException: Could not create MongoDBClientWrapper instance" – Gayathri