@mcp-z/mcp-outlook
    Preparing search index...

    Type Alias OutlookQuery

    OutlookQuery: BaseEmailQueryFields & {
        $and?: schemas.OutlookQuery[];
        $not?: schemas.OutlookQuery;
        $or?: schemas.OutlookQuery[];
        categories?:
            | schemas.OutlookSystemCategory
            | {
                $all?: schemas.OutlookSystemCategory[];
                $any?: schemas.OutlookSystemCategory[];
                $none?: schemas.OutlookSystemCategory[];
            };
        exactPhrase?: string;
        importance?: "high"
        | "normal"
        | "low";
        kqlQuery?: string;
        label?: string | FieldOperator;
    }