//! Edge (fact) type — a directed, bi-temporal relation between two entities.
use crate;
/// A directed edge (fact) between two entities in the knowledge graph.
///
/// Edges are bi-temporal: `valid_at` / `invalid_at` represent when the fact
/// is true in the real world, while `created_at` records when it was stored.