jamespot-user-api
    Preparing search index...

    Type Alias SearchQuerySortModel

    Used in search query to specify a filter field : name/id of the field to sort order : desc' | 'asc'

    type SearchQuerySortModel = {
        field: string;
        order: "desc" | "asc";
    }
    Index

    Properties

    Properties

    field: string
    order: "desc" | "asc"