0

According to official SDN4 documentation - In Spring Data Neo4j 4, index management concerns were removed from the mapping framework entirely.

So how about indexes for @GraphId ? Is it also out of scope in SDN4 and indexes for fields annotated with @GraphId have to be also created manually ?

alexanoid
  • 24,051
  • 54
  • 210
  • 410

1 Answers1

2

@GraphId currently represents the neo4j internal id on which you don't have any control.

Querying by id is the fastest lookup in neo4j btw.

Christophe Willemsen
  • 19,399
  • 2
  • 29
  • 36