useCategorySearch
Category:
Navigation & Routing
Composable for category search.
Types
ts
export function useCategorySearch(): UseCategorySearchReturn
ts
export type UseCategorySearchReturn = {
/**
* Search for category by ID
* Accepts optional query params and associations
*/
search(
categoryId: string,
options?: {
withCmsAssociations?: boolean;
query?: Schemas["Criteria"];
},
): Promise<Schemas["Category"]>;
/**
* Search based on the query
*/
advancedSearch(options: {
withCmsAssociations?: boolean;
query: Schemas["Criteria"];
}): Promise<Schemas["Category"][]>;
};