productCreate

Graphql fields and variables for the productCreate mutation

Create a product

Scope required: product:write

For a complete list of input attributes see the ProductAttributes type

mutation productCreate ($attributes: ProductAttributes!) {
  productCreate (attributes: $attributes) {
      errors
      product {
        code
        createdAt
        description
        everythingInPlus
        id
        internalNotes
        name
        plansToDisplay
        platformId
        productCategoryId
        showProductNameOnLineItem
        updatedAt
      }
  }
}

Arguments

Name
Type
Description

Response

Name
Type
Description

errors

List (String)

product

Last updated

Was this helpful?