Objects

SkuType

Type containing all information about a product SKU

Type containing all information about a product SKU

type SkuType {
  skuId: Int!
  productId: Int!
  articleNumber: String!
  name: String
  externalId: String
  gtin: String
  stock: StockType
  dimensions: DimensionsType
  shelf: String
  incoming: DateTime
  weight: Int!
}

Fields

skuId ● Int! non-null scalar required

ID of the SKU

productId ● Int! non-null scalar required

The associated product ID

articleNumber ● String! non-null scalar required

The article number of the SKU

name ● String scalar

SKU name

externalId ● String scalar

External ID of the SKU

gtin ● String scalar

SKU GTIN

stock ● StockType object

Stock information

dimensions ● DimensionsType object

The dimensions of the SKU

shelf ● String scalar

Shelf

incoming ● DateTime scalar

Incoming date

weight ● Int! non-null scalar required

Weight in grams (g)

Member Of

ProductType object ● RelatedProductType object