Right now I'm using the neo4jrestclient python package to list extensions:
from neo4jrestclient.client import GraphDatabase
gdb = GraphDatabase("http://localhost:7474/db/data/")
ext = gdb.extensions
Is there a direct shell command I can use do this? I also don't see anything on the web interface. I'm using 1.8.
Thanks!
Since this is the top answer in Google and the accepted answer is out of date for v3.0+, here's a new answer.
On this page, they show a number of new procedures, and the one in question to get a list of all procedures in the database (including plugins) is "dmbs.procedures()", and I find it most useful to have the signature of the procedure as well as the name. The query for that is:
CALL dbms.procedures() YIELD name, signature RETURN name, signature
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With