llama-index-graph-stores-neo4j==0.3.5
. When I instantiate the store:# graph store instance graph_store = Neo4jPGStore( username=settings.neo4j_username, password=settings.neo4j_password.get_secret_value(), url=settings.neo4j_uri, )
neo4j.exceptions.ClientError: {code: Neo.ClientError.Procedure.ProcedureNotFound} {message: There is no procedure with the name `apoc.meta.subGraph` registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.}
apoc-5.24.0-extended.jar apoc.jar neo4j-graph-data-science-2.11.0.jar
neo4j:5.23.0-community
and neo4j:5.24.2-community
with the with the same issues. Does anyone know what I am missing.SHOW PROCEDURES WHERE name STARTS WITH 'apoc.meta';
returns:ββββββββββββββββββ€βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€ββββββββββ€ββββββββββββββ βname βdescription βmode βworksOnSystemβ ββββββββββββββββββͺβββββββββββββββββββββββββββββββββββββββββββββββββββββββββββͺββββββββββͺββββββββββββββ‘ β"apoc.meta.data"β"Examines the full graph and returns a table of metadata."β"DEFAULT"βfalse β ββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ΄ββββββββββ΄ββββββββββββββ
apoc.meta.subGraph
.--env NEO4J_apoc_import_file_use__neo4j__config=true \ --env NEO4J_dbms_security_procedures_unrestricted=apoc.*,apoc.meta.*,apoc.any.*,gds.* \ --env NEO4J_dbms_security_procedures_allowlist=apoc.meta.data,apoc.meta.subGraph,apoc.any.property,apoc.*