sellingPlanGroupUpdate mutation

Update a Selling Plan Group.

Required access

write_products access scope.

On this page

Interactive example

This is an example mutation query. Use the embedded interactive tool below to edit the query.

Hint: use Ctrl + Space for autocompleting fields.

mutation sellingPlanGroupUpdate($id: ID!) { sellingPlanGroupUpdate(id: $id) {
  1. <font style="color:#1F61A0;">deletedSellingPlanIds</font>
  2. <font style="color:#1F61A0;">sellingPlanGroup</font> <font style="color:#555555;">{</font>
  3. <font style="color:#1F61A0;">id</font>
  4. <font style="color:#555555;">}</font>
  5. <font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
  6. <font style="color:#1F61A0;">code</font>
  7. <font style="color:#1F61A0;">field</font>
  8. <font style="color:#1F61A0;">message</font>
  9. <font style="color:#555555;">}</font>
} } { “id”: “Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE=” }

Arguments

Argument Description
id
(
[ID!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01)

) REQUIRED
The Selling Plan Group to update.
input
(
[SellingPlanGroupInput](https://shopify.dev/docs/admin-api/graphql/reference/products-and-collections/sellingplangroupinput)

)
The properties of the Selling Plan Group to update.

SellingPlanGroupInput fields

  • appId ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    Identifier for app, exposed in Liquid and product JSON.
  • description ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    Merchant facing description of the selling plan group.
  • merchantCode ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    Merchant facing label of the selling plan group.
  • name ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    Buyer facing label of the selling plan group.
  • options ([[String!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    The values of all options available on the selling plan group. Selling plans are grouped together in Liquid when they are created by the same app, and have the same selling_plan_group.name and selling_plan_group.options values.
  • position ([Int](https://shopify.dev/docs/admin-api/graphql/reference/scalar#int-2021-01))
    Relative value for display purposes of the selling plan group. A lower position will be displayed before a higher one.
  • sellingPlansToCreate ([[SellingPlanInput!]](https://shopify.dev/docs/admin-api/graphql/reference/products-and-collections/sellingplaninput))
    List of selling plans to create.
  • sellingPlansToDelete ([[ID!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01))
    List of selling plans ids to delete.
  • sellingPlansToUpdate ([[SellingPlanInput!]](https://shopify.dev/docs/admin-api/graphql/reference/products-and-collections/sellingplaninput))
    List of selling plans to update.

Return fields

  • deletedSellingPlanIds ([[ID!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01))
    The IDs of the deleted Subscription Plans.
  • sellingPlanGroup ([SellingPlanGroup](https://shopify.dev/docs/admin-api/graphql/reference/products-and-collections/sellingplangroup))
    The updated Selling Plan Group.
  • userErrors ([[SellingPlanGroupUserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/products-and-collections/sellingplangroupusererror))
    List of errors that occurred executing the mutation.