prorm API Reference
    Preparing search index...

    Interface GraphTraversalStep

    A single hop / edge match used when building a traversal or include.

    interface GraphTraversalStep {
        edgeLabel: string;
        direction: GraphTraversalDirection;
        targetLabel?: string;
        as?: string;
        where?: WhereOptions;
    }
    Index
    edgeLabel: string

    Edge label to traverse, e.g. HAS_POST.

    targetLabel?: string

    Target node label reached by this hop, if known.

    as?: string

    Association name this hop represents (used as the result key).

    where?: WhereOptions

    Filter applied to the reached nodes.