GetFiltersParameters
Definition of graphql parameters for getting filters same information as the product filters
interface GetFiltersParameters {
after?: string;
filters: SearchProductsFiltersInput;
first?: number;
sort?: SearchProductsSortInput;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
after | Optional | string | Cursor-pointer to determine the page the user is in |
filters | Required | SearchProductsFiltersInput | Available search filters for use when querying products |
first | Optional | number | The page size to display |
sort | Optional | SearchProductsSortInput | The results are sorted by relevance if the sort argument is not provided. |