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

removeSharedProductModifiersOverrides

Example Query
1mutation ExampleMutation($input: RemoveSharedProductModifiersOverridesInput) {
2 removeSharedProductModifiersOverrides(input: $input) {
3 sharedProductModifiers
4 }
5}
Variables
1{
2 "input": {
3 "localeContext": {
4 "channelId": "example",
5 "locale": "example"
6 },
7 "data": {
8 "modifiers": [
9 {
10 "modifierId": "example",
11 "data": {
12 "checkbox": {
13 "fields": null
14 },
15 "dateField": {
16 "fields": null
17 },
18 "dropdown": {
19 "fields": null,
20 "values": null
21 },
22 "fileUpload": {
23 "fields": null
24 },
25 "multiLineTextField": {
26 "fields": null
27 },
28 "numberField": {
29 "fields": null
30 },
31 "radioButtons": {
32 "fields": null,
33 "values": null
34 },
35 "rectangleList": {
36 "fields": null,
37 "values": null
38 },
39 "swatch": {
40 "fields": null,
41 "values": null
42 },
43 "textField": {
44 "fields": null
45 }
46 }
47 }
48 ]
49 }
50 }
51}
Example response
1{
2 "data": {
3 "removeSharedProductModifiersOverrides": {
4 "sharedProductModifiers": [
5 {
6 "checkedByDefault": true,
7 "fieldValue": "example",
8 "overridesForLocale": {
9 "displayName": null,
10 "fieldValue": null
11 },
12 "id": "example",
13 "displayName": "example",
14 "isRequired": true
15 }
16 ]
17 }
18 }
19}
Remove overrides for shared product modifiers from a channel locale.
Was this page helpful?
Previous

setSharedProductModifiersInformation

Next

setSharedProductOptionsInformation

Built with

Arguments

inputRemoveSharedProductModifiersOverridesInputRequired

Returns

an optional RemoveSharedProductModifiersOverridesResult
sharedProductModifierslist of SharedProductModifiers
List of shared product modifiers.