@resistdesign/voltra
    Preparing search index...

    Type Alias EdgeKey

    Key identifying a relation between two entities.

    type EdgeKey = {
        direction?: Direction;
        from: string;
        relation: string;
        to: string;
    }
    Index

    Properties

    direction?: Direction

    Optional direction override for the edge.

    from: string

    Source entity id.

    relation: string

    Relation name.

    to: string

    Target entity id.