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...