For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dev Portal
DocsAPI ReferenceLearnCommunityChangelog
DocsAPI ReferenceLearnCommunityChangelog
    • About Our APIs
  • REST
    • Overview
  • GraphQL
    • Overview
          • MUTcreateAppExtension
          • MUTupdateAppExtension
          • MUTdeleteAppExtension
          • MUTcreateChannel
          • MUTremoveProductBasicInformationOverrides
          • MUTremoveProductSeoInformationOverrides
          • MUTremoveProductOptionsOverrides
          • MUTremoveProductStorefrontDetailsOverrides
          • MUTremoveProductPreOrderSettingsOverrides
          • MUTsetProductBasicInformation
          • MUTsetProductIsFeatured
          • MUTremoveProductIsFeaturedOverride
          • MUTsetProductSeoInformation
          • MUTsetProductStorefrontDetails
          • MUTsetProductPreOrderSettings
          • MUTsetProductOptionsInformation
          • MUTsetProductUrlPath
          • MUTremoveProductUrlPathOverride
          • MUTsetProductModifiersInformation
          • MUTremoveProductModifiersOverrides
          • MUTremoveProductCustomFieldsOverrides
          • MUTupdateProductCustomFields
          • MUTaddImagesToProduct
          • MUTremoveImagesFromProduct
          • MUTupdateProductImageProperties
          • MUTremoveProductImagePropertiesOverrides
          • MUTsetSharedProductModifiersInformation
          • MUTremoveSharedProductModifiersOverrides
          • MUTsetSharedProductOptionsInformation
          • MUTremoveSharedProductOptionsOverrides
          • MUTsettings
          • MUTupdateTranslations
          • MUTdeleteTranslations
          • MUTaddLocale
          • MUTdeleteLocale
          • MUTupdateLocale
          • MUTcreateEventBridgeWebhook
          • MUTcreatePubSubWebhook
          • MUTupdatePubSubWebhook
          • MUTupdateEventBridgeWebhook
          • MUTcreateHttpsWebhook
          • MUTdeleteWebhook
          • MUTupdateHttpsWebhook
          • MUTcreateMetafield
          • MUTupdateMetafield
          • MUTdeleteMetafield
          • MUTreassignMetafieldsOwner
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLAdminMutations

removeSharedProductOptionsOverrides

Example Query
1mutation ExampleMutation($input: RemoveSharedProductOptionsOverridesInput) {
2 removeSharedProductOptionsOverrides(input: $input) {
3 sharedProductOptions
4 }
5}
Variables
1{
2 "input": {
3 "data": {
4 "options": [
5 {
6 "optionId": "example",
7 "data": {
8 "dropdown": {
9 "fields": null,
10 "values": null
11 },
12 "radioButtons": {
13 "fields": null,
14 "values": null
15 },
16 "rectangleList": {
17 "fields": null,
18 "values": null
19 },
20 "swatch": {
21 "fields": null,
22 "values": null
23 }
24 }
25 }
26 ]
27 },
28 "localeContext": {
29 "channelId": "example",
30 "locale": "example"
31 }
32 }
33}
Example response
1{
2 "data": {
3 "removeSharedProductOptionsOverrides": {
4 "sharedProductOptions": [
5 {
6 "displayName": "example",
7 "id": "example",
8 "overridesForLocale": {
9 "displayName": null,
10 "values": null
11 },
12 "values": [
13 {
14 "id": null,
15 "isDefault": null,
16 "label": null
17 }
18 ]
19 }
20 ]
21 }
22 }
23}
Removes overrides for shared product options from a channel locale.
Was this page helpful?
Previous

setSharedProductOptionsInformation

Next

settings

Built with

Arguments

inputRemoveSharedProductOptionsOverridesInputRequired

Returns

an optional RemoveSharedProductOptionsOverridesResult
sharedProductOptionslist of SharedProductOptions
List of shared product options.