@ken-all/kenall
    Preparing search index...

    Interface SchoolSearcherOptions

    The set of options that can be passed to searchSchool.

    interface SchoolSearcherOptions {
        facet_area?: string;
        facet_branch?: string;
        facet_establishment_type?: string;
        facet_prefecture?: string;
        facet_type?: string;
        limit?: number;
        offset?: number;
        q: string;
    }
    Index
    facet_area?: string

    The hierarchy of the area facet to narrow the result down to.

    Example: "/東京都/文京区"

    facet_branch?: string

    The hierarchy of the branch facet to narrow the result down to.

    Example: "/本校"

    facet_establishment_type?: string

    The hierarchy of the establishment type facet to narrow the result down to.

    Example: "/公立"

    facet_prefecture?: string

    The hierarchy of the prefecture facet to narrow the result down to.

    Example: "/東京都"

    facet_type?: string

    The hierarchy of the school type facet to narrow the result down to.

    Example: "/大学"

    limit?: number

    The maximum number of the items to retrieve, between 1 and 100.

    offset?: number

    The offset from which the result has to be retrieved.

    q: string

    The search query.

    Example: "name:東京大学"