Type alias IHarpeeModelFindByConditionOptions

IHarpeeModelFindByConditionOptions: { conditions: ISearchCondition[]; getAttributes?: string[]; limit?: number | null; offset?: number; operator?: Operators }

Type declaration

  • conditions: ISearchCondition[]

    the array of condition objects, must include one or more object in the array

  • Optional getAttributes?: string[]

    an array of one or more attributes to be returned, default is ["*"] which returns all attributes.

  • Optional limit?: number | null

    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, default 0

  • Optional operator?: Operators

    the operator used between each condition, default is and