Alokai

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

NameRequiredTypeDescription
afterOptionalstringCursor-pointer to determine the page the user is in
filtersRequiredSearchProductsFiltersInputAvailable search filters for use when querying products
firstOptionalnumberThe page size to display
sortOptionalSearchProductsSortInputThe results are sorted by relevance if the sort argument is not provided.

On this page