Skip to Content

manufacturers

Retrieves a paginated list of manufacturers from 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 ManufacturerConnection - A connection object containing a paginated list of manufacturers.

Example

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