I'm using the following
Neo4j Browser version: 4.0.5
Neo4j Server version: 4.0.2 (community)
I am starting to use the gds library. The first thing I tried was gds.graph.create
and ran into an error. I'm using the example from the documentation:
CALL gds.graph.create(
'my-native-graph',
'person',
'LIKES'
)
YIELD graphName, nodeCount, relationshipCount, createMillis;
I created two nodes (:person)
and one relationship (p1:person)-[:LIKES]->(p2:person)
When I ran the create graph procedure I get this error:
Neo.ClientError.Procedure.ProcedureCallFailed
Failed to invoke procedure `gds.graph.create`: Caused by: java.lang.NoClassDefFoundError: Could not initialize class org.neo4j.graphalgo.config.GraphCreateFromStoreConfigImpl
I checked neo4j.log and debug.log and didn't see anything relevant there.