OBJECT

Mutation

link GraphQL Schema definition

  • type Mutation {
  • # Create a CommentSold product
  • #
  • # Arguments
  • # input: [Not documented]
  • createProduct(input: ProductInput!): Product!
  • # Update a CommentSold product
  • #
  • # Arguments
  • # input: [Not documented]
  • updateProduct(input: ProductInput!): Product!
  • # Create a Variant attached to an existing product
  • #
  • # Arguments
  • # input: [Not documented]
  • createVariant(input: CreateVariantInput!): Variant!
  • # Update an existing Variant
  • #
  • # Arguments
  • # input: [Not documented]
  • updateVariant(input: UpdateVariantInput!): Variant!
  • # Update the quantity - either absolute or relative - of an existing Variant
  • #
  • # Arguments
  • # input: [Not documented]
  • updateVariantQuantity(input: UpdateVariantQuantityInput!): Variant!
  • }

link Require by

This element is not required by anyone