Anchor to section titled 'undefined'

deliverySettingUpdate
mutation

Set the delivery settings for a shop.


Specifies the input fields for the delivery shop level settings.


Was this section helpful?

The updated delivery shop level settings.

The list of errors that occurred from executing the mutation.


Was this section helpful?
Hide code
Mutation reference
Copy
mutation deliverySettingUpdate($setting: DeliverySettingInput!) {
  deliverySettingUpdate(setting: $setting) {
    setting {
      # DeliverySetting fields
    }
    userErrors {
      field
      message
    }
  }
}
Hide code
Input
Copy
{
  "setting": {
    "legacyModeProfiles": true
  }
}
input DeliverySettingInput {
  legacyModeProfiles: Boolean
}