Skip to Content

manufacturers

Retrieves a paginated list of manufacturers available in the storefront.

Authentication

Public Access: Accessible with the public API key

Query Structure

{ manufacturers(first: Int, after: String, last: Int, before: String) { # ManufacturerConnection fields } }

Arguments

ArgumentTypeRequiredDescription
firstIntNoReturns the first n elements.
afterStringNoReturns elements after cursor.
lastIntNoReturns the last n elements.
beforeStringNoReturns elements before cursor.

Return Type

Returns a ManufacturerConnection containing a paginated list of manufacturers.

Example

query { manufacturers(first: 10) { edges { node { id name } cursor } pageInfo { hasNextPage hasPreviousPage startCursor endCursor } } }