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.

9mikev
Node Link
since ‎02-21-2022
‎06-01-2022

User Statistics

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

User Activity

I'm setting up neo4j server on Ubunti 18.04 LTS, and after I installed it following the instructions here, the cypher-shell command does not work. It does nothing, and after some time it prints out connection timed out: /127.0.0.1:7687 neo4j status ...
When initializing my graph through java spring boot I get the following warning: mapping.DefaultNeo4jIsNewStrategy: Instances of class with an assigned id will always be treated as new without version property! What is the meaning of this message? A...
I have the following classes for node and edge @Node public class MyNode { @Id String id; String name; String type; @Relationship(type = "CONTAINS") Set<MyEdge> outgoingEdges = new HashSet<>(); public MyNode() { } ...
I have created a node class called MyNode and an edge class called MyEdge as follows: @Node public class MyNode { @Id String id; String name; String type; @Relationship(type = "CONTAINS") Set<MyEdge> outgoingEdges = new Has...
Kudos from