OBJECT

OrderTemplateMutation

Mutations that act on Order Templates.

link GraphQL Schema definition

  • type OrderTemplateMutation {
  • # Creates an order template.
  • #
  • # Arguments
  • # order_template: The data to use for the order template creation
  • create(order_template: OrderTemplateCreate!): SuccessResult
  • # Soft deletes an order template.
  • #
  • # Arguments
  • # id: The ID of the order template to delete.
  • delete(id: Int!): SuccessResult
  • # Updates an order template.
  • #
  • # Arguments
  • # order_template: The data to use for the order template update
  • update(order_template: OrderTemplateUpdate!): SuccessResult
  • }