CategoryFilterInput
Defines the filters to be used in the search. A filter contains at least one attribute, a comparison operator, and the value that is being searched for.
type CategoryFilterInput = {
category_uid?: InputMaybe<FilterEqualTypeInput>; /** Deprecated: use 'category_uid' to filter uniquely identifiers of categories. */
ids?: InputMaybe<FilterEqualTypeInput>; /** Filter by the display name of the category. */
name?: InputMaybe<FilterMatchTypeInput>; /** Filter by the unique parent category ID for a `CategoryInterface` object. */
parent_category_uid?: InputMaybe<FilterEqualTypeInput>; /** Filter by the unique parent category ID for a `CategoryInterface` object. */
parent_id?: InputMaybe<FilterEqualTypeInput>; /** Filter by the part of the URL that identifies the category. */
url_key?: InputMaybe<FilterEqualTypeInput>; /** Filter by the URL path for the category. */
url_path?: InputMaybe<FilterEqualTypeInput>;
};