Assign the template to a product

Both sku and template must already exist.

mutation {
  productSetTemplate(input: { sku: "SKU78", template: "template" }) {
    __typename
  }
}

Last updated