jamespot-user-api
    Preparing search index...

    Type Alias SearchQueryFilterModel

    Used in search query to specify a filter field : name/id of the filter category (ie skills) value : id of the field (ie react) exclude : boolean to include or exclude the filter

    type SearchQueryFilterModel = {
        exclude?: boolean;
        field: string;
        or?: boolean;
        value: string | string[];
    }
    Index

    Properties

    Properties

    exclude?: boolean
    field: string
    or?: boolean
    value: string | string[]