chj
chj

Reputation: 91

Neo4j automate graph change over time

Is there a way (query) or tools that enable auto playback of a graph change over time?

E.g. over time, new nodes or old nodes might be removed.

For instance:

A "playback" or query to automatically shows Graph 1 to 3 periodically.

Any suggestion is appreciated! :)

Upvotes: 2

Views: 272

Answers (1)

MicTech
MicTech

Reputation: 45153

You have a few options how to deal with your problem.

  1. Write your own Unmanaged Extension which will use Transaction API and log those information by yourself

  2. This extension for Neo4j could be interestion for you

  3. Time-Based Versioned Graphs

Upvotes: 1

Related Questions