Hello,
I'm working on an
ASP.NET application and using Neo4jClient for connecting to the server. For now, the application is succesfully executing Cypher queries, but now I want to execute Gremlin queries. Since Neo4jClient documentation is very poor when it comes to working with Gremlin, I tried to write some code for executing Gremlin, but i get the following error:
"You're attempting to execute a Gremlin query, however the server instance you are connected to does not have the Gremlin plugin loaded. If you've recently upgraded to Neo4j 2.0, you'll need to be aware that Gremlin no longer ships as part of the normal Neo4j distribution. Please move to equivalent (but much more powerful and readable!) Cypher."
So I tried installing Gremlin plugin on my Neo4j server (version 2.1.7) and downloaded that plugin from various sites and copied its contents to $NEO4J_HOME/plugins folder. However, when I run
curl localhost:7474/db/data
I get the following output:

I can't seem to install Gremlin as server extension no matter what I try so I would appreciate if someone could help me.