GetReviewParams
Parameters for the getReview API endpoint
interface GetReviewParams {
limit?: number;
offset?: number;
productId?: string;
sort?: string | string[];
where?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
limit | Optional | number | Pagination limit |
offset | Optional | number | Pagination offset |
productId | Optional | string | ID of the parent product |
sort | Optional | string | string[] | Sorting options. You can read more here |
where | Optional | string | Custom where query |