Skip to Content

Manufacturer

Describes a manufacturer with SEO metadata, product information, and branding details.

Type Definition

type Manufacturer { seoDescription: String seoTitle: String seoKeywords: String id: Int title: String productsCount: Int products: ProductConnection image: String url: String }

Fields

FieldTypeDescription
seoDescriptionStringReturns description for search engines.
seoTitleStringReturns title for search engines.
seoKeywordsStringReturns keywords for search engines.
idIntReturns the id.
titleStringReturns the title.
productsCountIntReturns the total amount of products for this manufacturer.
productsProductConnectionReturns the products for this manufacturer.
imageStringReturns the image.
urlStringReturns the URL for this manufacturer.

Relationships

The Manufacturer type represents a manufacturer entity that can be queried directly or accessed through product associations. It maintains a connection to products through the products field, which returns a ProductConnection allowing paginated access to all products associated with the manufacturer. A Manufacturer is referenced by the manufacturer field on the Product type, establishing a bidirectional relationship between manufacturers and their products.

Example

{ id title seoTitle seoDescription seoKeywords productsCount image url products { edges { node { id title } } } }

Implements

None