menu
EdgeRecord
import { EdgeRecord } from "destack:topology";
Concrete topology edge record.
1export struct EdgeRecord {2 id: EdgeId;3 kind: EdgeKind;4 from: EntityId;5 to: EntityId;6 name: string | undefined;7 labels: LabelSet | undefined;8}Members
id: EdgeIdEdge identifier.
kind: EdgeKindEdge kind.
from: EntityIdSource entity.
to: EntityIdDestination entity.
name: string | undefinedOptional edge name.
labels: LabelSet | undefinedEdge labels.