cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

jvanvalkenhoef
Node Link
since ‎03-27-2020
‎06-01-2022

User Statistics

  • 9 Posts
  • 1 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

About a month ago I was playing around with the recommendation sandbox on Neo4j. Now I cant seem to be able to find it anymore. The instructions for the tutorial are still there if you put this into the Neo4j-browser::play https://guides.neo4j.com/sa...
I wrote a user defined function, which basically looks like this: @Context public Transaction tx; @UserFunction public Node createNode(@Name("labelName") String name) { Node newNode = tx.createNode(Label.label(name)); return newNode; } After...
Hello, I copied the example on: https://neo4j.com/docs/api/java-driver/current/. After compiling SmallExample.java into a jar-file and running it from the command line with: java -cp name_jar_file.jar SmallExample I get the following error: Exception...
I followed the example as in [https://github.com/neo4j-examples/neo4j-procedure-template ]. After creating the JAR-file I copied the file into the plugins folder that i opened in the GUI in Neo4j Desktop in Manage->Open Folder->Plugins . Then I resta...