Entity
    Preparing search index...

    Interface PostgresOrderByClause<TFields>

    interface PostgresOrderByClause<TFields extends Record<string, any>> {
        fieldName: keyof TFields;
        order: OrderByOrdering;
    }

    Type Parameters

    • TFields extends Record<string, any>
    Index

    Properties

    Properties

    fieldName: keyof TFields

    The field name to order by.

    The OrderByOrdering to order by.