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

removeProductModifiersOverrides

Example Query
1mutation ExampleMutation($input: RemoveProductModifiersOverridesInput) {
2 removeProductModifiersOverrides(input: $input) {
3 product {
4 id
5 basicInformation
6 isFeatured
7 urlPath
8 overridesForLocale
9 overridesForChannel
10 seoInformation
11 storefrontDetails
12 preOrderSettings
13 customFields
14 }
15 }
16}
Variables
1{
2 "input": {
3 "productId": "example",
4 "localeContext": {
5 "channelId": "example",
6 "locale": "example"
7 },
8 "data": {
9 "modifiers": [
10 {
11 "modifierId": "example",
12 "data": {
13 "checkbox": {
14 "fields": null
15 },
16 "dateField": {
17 "fields": null
18 },
19 "dropdown": {
20 "fields": null,
21 "values": null
22 },
23 "fileUpload": {
24 "fields": null
25 },
26 "multiLineTextField": {
27 "fields": null
28 },
29 "numberField": {
30 "fields": null
31 },
32 "pickList": {
33 "fields": null,
34 "values": null
35 },
36 "radioButtons": {
37 "fields": null,
38 "values": null
39 },
40 "rectangleList": {
41 "fields": null,
42 "values": null
43 },
44 "swatch": {
45 "fields": null,
46 "values": null
47 }
48 }
49 }
50 ]
51 }
52 }
53}
Example response
1{
2 "data": {
3 "removeProductModifiersOverrides": {
4 "product": {
5 "id": "example",
6 "basicInformation": {
7 "description": null,
8 "name": null
9 },
10 "isFeatured": true,
11 "urlPath": {
12 "path": null
13 },
14 "overridesForLocale": {
15 "basicInformation": null,
16 "seoInformation": null,
17 "storefrontDetails": null,
18 "urlPath": null,
19 "preOrderSettings": null
20 },
21 "overridesForChannel": {
22 "isFeatured": null
23 },
24 "seoInformation": {
25 "metaDescription": null,
26 "pageTitle": null
27 },
28 "storefrontDetails": {
29 "warranty": null,
30 "availabilityDescription": null,
31 "searchKeywords": null
32 },
33 "preOrderSettings": {
34 "message": null
35 },
36 "customFields": {
37 "pageInfo": null,
38 "edges": null
39 }
40 }
41 }
42 }
43}
Remove product modifier overrides from a locale.
Was this page helpful?
Previous

setProductModifiersInformation

Next

removeProductCustomFieldsOverrides

Built with

Arguments

inputRemoveProductModifiersOverridesInputRequired

Returns

an optional RemoveProductModifiersOverridesResult
productProduct
The product that had its overrides removed.