menu

EdgeRecord

import { EdgeRecord } from "destack:topology";

Concrete topology edge record.

language/library/src/topology/edge.ds:29:42
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: EdgeId

Edge identifier.

kind: EdgeKind

Edge kind.

from: EntityId

Source entity.

to: EntityId

Destination entity.

name: string | undefined

Optional edge name.

labels: LabelSet | undefined

Edge labels.