INPUT_OBJECT

UpdateStockKeepingUnitMutationInput

The input object that defines the fields for the updateStockKeepingUnit mutation.

link GraphQL Schema definition

  • input UpdateStockKeepingUnitMutationInput {
  • # A Stock Keeping Unit (SKU) identifier.
  • stock_keeping_unit_code: String
  • # A human readable description.
  • description: Text
  • # The ID of a Service.
  • service_id: Int64Bit
  • # The ID of a `Package`.
  • package_id: Int64Bit
  • # Setting this value to `true` will set `description` to null.
  • unset_description: Boolean
  • # Setting this value to `true` will set `service_id` to null.
  • unset_service_id: Boolean
  • # Setting this value to `true` will set `package_id` to null.
  • unset_package_id: Boolean
  • }

link Require by