Hi, I am trying to run a query using the following :
final GraphDatabaseService graphDatabaseService = new EmbeddedGraphDatabase("http://localhost:7474/db/data");
ExecutionEngine engine = new ExecutionEngine(graphDatabaseService,StringLogger.DEV_NULL);
ExecutionResult result = engine.execute("START n=node(0) RETURN n");
However, an exception is fired upon executiong the upon code :
Exception in thread "main" java.lang.NoClassDefFoundError: scala/Function0
Can you give me advises on how to solve this issue, anyone ever had the same one ?
Thanks.