'Graph Data Science Error (APOC Metadata Procedure Unavailable)

I have imported my data into my dbms and installed the plugins APOC (4.2.0.0) and the Graf Data Science Library (1.4.1).

When I open the playground i get the following error:

error-msg

I added following lines into my neo4j config,

dbms.security.procedures.unrestricted=jwt.security.*,apoc.*,gds.*
dbms.security.procedures.allowlist=jwt.security.*,apoc.*,gds.*

but still getting the same error.

I have done a little research and found someone with the same error and he said:

"It turned out to be a problem with the schema - I had a node with a label that had a space in it "

Is that really an option it is not working for me?

I did my import with neo4j-admin like this:

bin/neo4j-admin import --database=neo4j --id-type=INTEGER --multiline-fields=true --skip-duplicate-nodes --skip-bad-relationships=true --nodes=commits=import/nodes-commits.csv --nodes=packages=import/nodes-packages.csv --nodes=users=import/nodes-users.csv --relationships=commits=import/relationship-projects_commits.csv

with some further relationships.

I also tried then newest version of the dbms, apoc and GDS, but the same error came up.

Anybody have any idea if it can be the import or is it some other error.

Thanks a lot



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source