interface SearchQuery {
    search: FlowrSearch<ParentInformation,
        | "from"
        | "get"
        | "all"
        | "criterion", readonly (
        | "filter"
        | "index"
        | "skip"
        | "first"
        | "last"
        | "tail"
        | "take"
        | "merge"
        | "select")[], FlowrSearchElements<ParentInformation, FlowrSearchElement<ParentInformation>[]>>;
    type: "search";
}

Hierarchy (view full)

Hierarchy-Diagram

UML class diagram of SearchQuery

Properties

Properties

search: FlowrSearch<ParentInformation,
    | "from"
    | "get"
    | "all"
    | "criterion", readonly (
    | "filter"
    | "index"
    | "skip"
    | "first"
    | "last"
    | "tail"
    | "take"
    | "merge"
    | "select")[], FlowrSearchElements<ParentInformation, FlowrSearchElement<ParentInformation>[]>>
type: "search"

used to select the query type :)