Skip to Content

Manufacturer

A product manufacturer, including its name and 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.
productsProductConnectionThe products for this manufacturer, supporting sorting and filtering.
imageStringReturns the image.
urlStringReturns the URL for this manufacturer.

Relationships

The Manufacturer type represents a product manufacturer and is associated with products through the products field, which returns a ProductConnection for paginated access to all products from that manufacturer. This type is returned by manufacturer-specific queries and appears as a field on the Product type, establishing a many-to-one relationship between products and their manufacturers.

Example

query { manufacturer(id: 12345) { id title seoTitle seoDescription image url productsCount products(first: 10) { edges { node { id title } } } } }

Implements

None