# productGroupByHandle Get a single product group by handle ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { productGroupByHandle(handle: String!) { # ProductGroup fields } } ``` ## Arguments | Argument | Type | Required | Description | |----------|------|----------|-------------| | handle | String | Yes | The handle of the product group to retrieve | ## Return Type [ProductGroup](/reference/storefront/v1/objects/product-group) - Represents a product group in the store, including its metadata, SEO fields, relationships, and available filters for GraphQL queries. ## Example ```graphql { productGroupByHandle(handle: "electronics") { id title handle description image productsCount seoTitle seoDescription seoKeywords url parent { id title handle } breadcrumbs { id title handle } productGroups { id title handle } products { edges { node { id title } } } } } ``` ## Related Types - [ProductGroup](/reference/storefront/v1/objects/product-group)