interface Auth0UsersSearchObject {
    query: {
        bool: {
            boost?: number;
            filter?: Record<string, any> | Record<string, any>[];
            minimum_should_match?: string;
            must?: Record<string, any> | Record<string, any>[];
            must_not?: Record<string, any> | Record<string, any>[];
            should?: Record<string, any> | Record<string, any>[];
        };
    };
}

Properties

Properties

query: {
    bool: {
        boost?: number;
        filter?: Record<string, any> | Record<string, any>[];
        minimum_should_match?: string;
        must?: Record<string, any> | Record<string, any>[];
        must_not?: Record<string, any> | Record<string, any>[];
        should?: Record<string, any> | Record<string, any>[];
    };
}