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.

csabahalmagyi
Node
since ‎03-19-2019
‎06-01-2022

User Statistics

  • 7 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hi devs, I wonder if anyone else encountered this issue. public class NodeA{ Set<NodeB> nodeBSet; public void addNodeB(NodeB b){ if(nodeBSet == null) nodeBSet = new HashSet<>(); nodeBSet.add(b); } } Then I have a method to assemble...
Hello folks, I have a node like this: @NodeEntity public class ExampleNode { @GraphId Long id; @Index String symbol; //two additional attributes with the Index annotation and a few more without } I use the embedded driver to cre...
Hi devs, I am experiencing performance issues with a rather small dataset (few hundred thousand nodes). I have the following nodes: (NodeA)-[:ASSOCIATED_WITH]-(Association)-[:MARKER]-(Marker) @NodeEntity public class NodeA{ @GraphId Long id; priva...