Strata - v1.4.10
    Preparing search index...

    Interface NLink<Data>

    A single link (edge) of the graph

    interface NLink<Data = any> {
        data: Data;
        fromId: NodeId;
        id: string;
        toId: NodeId;
    }

    Type Parameters

    • Data = any
    Index

    Properties

    Properties

    data: Data

    Arbitrary data associated with this link

    fromId: NodeId

    Node identifier where this links starts

    id: string

    Unique identifier of this link

    toId: NodeId

    Node identifier where this link points to