# ProductGroupEdge An edge in a connection to a ProductGroup. ## Connection Structure ```graphql { node: ProductGroup cursor: String! } ``` ## Edge Type The `ProductGroupEdge` type represents a single item in a paginated connection to ProductGroup objects. Each edge contains: - **node**: The `ProductGroup` object at this edge. This field is optional and may be null in certain scenarios. - **cursor**: A unique, opaque string that identifies the position of this edge in the connection. This cursor is required and must be used when paginating through results using the `before` or `after` arguments. When traversing a connection, use the cursor value from edges to request additional pages of results. Cursors are stable identifiers for their respective edges and should not be decoded or parsed. ## Related Types - [ProductGroup](/reference/storefront/v1/objects/product-group) - String