import type * as HydraDB from "../index.js"; export interface GraphTripletWithEvidence { /** Chunk that provides evidence for this relation. */ chunkId?: string; /** Evidence entries for this relationship triplet. */ relations?: HydraDB.GraphRelationEvidence[]; source?: HydraDB.GraphEntity; target?: HydraDB.GraphEntity; /** * Truncated is set on auxiliary triplets whose fan-out hit a per-node cap, * so a caller can tell "this source has no more comments" from "we stopped * counting". Omitted (false) on entity relations, which are bounded by the * request's own limit/cursor instead. */ truncated?: boolean; }