GetFactsAt returns facts valid at a specific point in time.
(query ast.Atom, t time.Time, fn func(TemporalFact) error)
| 42 | type ReadOnlyTemporalFactStore interface { |
| 43 | // GetFactsAt returns facts valid at a specific point in time. |
| 44 | GetFactsAt(query ast.Atom, t time.Time, fn func(TemporalFact) error) error |
| 45 | |
| 46 | // GetFactsDuring returns facts that overlap with the given interval. |
| 47 | GetFactsDuring(query ast.Atom, interval ast.Interval, fn func(TemporalFact) error) error |
no outgoing calls
no test coverage detected