Type alias IHarpeeModelFindOptions

IHarpeeModelFindOptions: { and?: string | number; getAttributes?: string[]; limit?: number; offset?: number; order?: Order; orderby?: string[]; where?: string }

Type declaration

  • Optional and?: string | number
  • Optional getAttributes?: string[]
  • Optional limit?: number

    the number of records that the query result will include,default is null, resulting in no limit

  • Optional offset?: number

    the number of records that the query will skip

  • Optional order?: Order

    the order of the result, 'desc' or 'asc'

  • Optional orderby?: string[]

    columns to order the result

  • Optional where?: string