arienandalibi
arienandalibi
* Fixes: Exception: Failed to load graph: Failed to load graph LoadError { source: InvalidPropertyType(Date32) } * Fixes #2001
### What changes were proposed in this pull request? The history object will take care of the history of nodes and edges. It will also implement different functionalities so they...
General follow-ups for PR #2075. This PR introduced a history object to access the histories of different elements (like nodes, edges, temporal properties, edge deletions, PathFromNode, PathFromGraph, etc...). Also, TimeIndexEntry(timestamp,...
Fixes: Exception: Failed to load graph: Failed to load graph LoadError { source: InvalidPropertyType(Date32) } Includes some tests
We should update `GraphTimeSemanticsOps::earliest_time_global()`, `latest_time_global()`, `earliest_time_window()`, and `latest_time_window()` to return `Option` instead of `Option`. The trait is currently defined in "raphtory/src/db/api/view/internal/time_semantics/mod.rs" Changing it would require for `TemporalGraph` in "raphtory-core/src/entities/graph/tgraph.rs" to...
Currently, the at(), before(), and after() functions take Into parameters but only use the timestamp associated with it. The functions in db/api/view/time.rs should be updated to use the secondary index...
Now that many of the APIs use TimeIndexEntry instead of timestamps, it might be time to update the epidemics temporal_SEIR algorithm to use TimeIndexEntry instead of timestamps. We are currently...