Graphora API
    Preparing search index...

    Interface NeighborhoodTraversalOptions

    interface NeighborhoodTraversalOptions {
        direction?: "out" | "in" | "both";
        maxDepth?: number;
        maxEdgeVisits?: number;
        maxNodes?: number;
    }
    Index
    direction?: "out" | "in" | "both"

    Directed-edge orientation. Undirected edges can always be crossed both ways.

    maxDepth?: number

    Inclusive hop limit; defaults to 2.

    maxEdgeVisits?: number

    Maximum examined adjacency entries, including loops and repeats; defaults to 10000.

    maxNodes?: number

    Maximum discovered nodes, including the root; defaults to 1000.