helia
    Preparing search index...

    Interface GraphSearchOptions

    interface GraphSearchOptions {
        strategy?: "depth-first" | "breadth-first";
        walker?(components: GraphWalkerComponents): GraphWalker;
    }
    Index

    Properties

    Methods

    Properties

    strategy?: "depth-first" | "breadth-first"

    How to search the graph

    use walker instead - this will be removed in a future release

    Methods