0

How does on find newly added nodes in Neo4j database between to two timestamps (date + time)? E.g., I need to find out newly created nodes/relationships between yesterday and today.

I also need basically the same for modified nodes/relationship between yesterday and today.

Jens Schauder
  • 77,657
  • 34
  • 181
  • 348
Yogi
  • 1,805
  • 13
  • 24

1 Answers1

0

You can use the auditing support of Spring Data, which is supported by Spring Data Neo4j starting with version 5.1, to fill attributes with the appropriate values and then use the normal query facilities to query the required range.

Jens Schauder
  • 77,657
  • 34
  • 181
  • 348