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
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