Saxonberg Server API
    Preparing search index...

    Interface MqlManyResult

    Plural counterpart to MqlOneResult. Adds raw and prep to MqlMany. stuff is the full match list (empty array when MQL produced no match — still a valid outcome the controller decides about); via is the query-level attribution (only when every match arrived through the same path).

    Inherits quantity from MqlMany — see MqlQuantity.

    interface MqlManyResult {
        prep?: string;
        quantity?: MqlQuantity;
        raw: string;
        stuff: Stuff[];
        via?: MqlMatchVia;
    }

    Hierarchy (View Summary)

    Index

    Properties

    prep?: string
    quantity?: MqlQuantity
    raw: string
    stuff: Stuff[]