manufacturerByHandle
Get a single manufacturer by handle
Authentication
Public Access: Accessible with the public API key
Query Structure
{
manufacturerByHandle(handle: String!) {
seoDescription
seoTitle
seoKeywords
id
title
productsCount
products
image
url
}
}Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| handle | String | Yes | The handle of the manufacturer to retrieve |
Return Type
Manufacturer - Describes a manufacturer.
Example
query {
manufacturerByHandle(handle: "acme-corp") {
id
title
seoTitle
seoDescription
seoKeywords
productsCount
image
url
}
}