# ManufacturerEdge An edge in a connection to a Manufacturer. ## Connection Structure ```graphql { node: Manufacturer cursor: String! } ``` ## Edge Type The `ManufacturerEdge` type represents a single edge in a manufacturer connection. Each edge contains: - **node**: The `Manufacturer` object at this edge (optional). This is the actual manufacturer data you're interested in. - **cursor**: A unique, opaque string cursor used for pagination. This value should be passed to subsequent queries using the `before` or `after` arguments to fetch additional pages of results. ## Related Types - [Manufacturer](/reference/storefront/1.3.0/objects/manufacturer) - String