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

setSharedProductModifiersInformation

Example Query
1mutation ExampleMutation($input: SetSharedProductModifiersInformationInput) {
2 setSharedProductModifiersInformation(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 "displayName": null,
14 "value": null
15 },
16 "dateField": {
17 "displayName": null
18 },
19 "dropdown": {
20 "displayName": null,
21 "values": null
22 },
23 "fileUpload": {
24 "displayName": null
25 },
26 "multiLineTextField": {
27 "displayName": null,
28 "defaultValue": null
29 },
30 "numberField": {
31 "defaultValue": null,
32 "displayName": null
33 },
34 "radioButtons": {
35 "displayName": null,
36 "values": null
37 },
38 "rectangleList": {
39 "displayName": null,
40 "values": null
41 },
42 "swatch": {
43 "displayName": null,
44 "values": null
45 },
46 "textField": {
47 "defaultValue": null,
48 "displayName": null
49 }
50 }
51 }
52 ]
53 }
54 }
55}
Example response
1{
2 "data": {
3 "setSharedProductModifiersInformation": {
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}
Sets information for shared product modifiers.
Was this page helpful?
Previous

removeProductImagePropertiesOverrides

Next

removeSharedProductModifiersOverrides

Built with

Arguments

inputSetSharedProductModifiersInformationInputRequired

Returns

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