Aggregation
Contains information for each filterable option (such as price, category UID, and custom attributes).
type Aggregation = {
__typename?: 'Aggregation'; /** Attribute code of the aggregation group. */
attribute_code: Scalars['String']['output']; /** The number of options in the aggregation group. */
count?: Maybe<Scalars['Int']['output']>; /** The aggregation display name. */
label?: Maybe<Scalars['String']['output']>; /** Array of options for the aggregation. */
options?: Maybe<Array<Maybe<AggregationOption>>>; /** The relative position of the attribute in a layered navigation block. */
position?: Maybe<Scalars['Int']['output']>;
};