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