# priceListUpdate - admin-graphql - MUTATION Version: 2024-10 ## Description Updates a price list. If you modify the currency, then any fixed prices set on the price list will be deleted. ### Access Scopes `write_products` access scope. Also: The user must have a permission to update a price list. ## Arguments * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - The ID of the price list to update. * [input](/docs/api/admin-graphql/2024-10/input-objects/PriceListUpdateInput): PriceListUpdateInput! - The input data used to update the price list. ## Returns * [priceList](/docs/api/admin-graphql/2024-10/objects/PriceList): PriceList The updated price list. * [userErrors](/docs/api/admin-graphql/2024-10/objects/PriceListUserError): PriceListUserError! The list of errors that occurred from executing the mutation. ## Examples ### Update a price list Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation priceListUpdate($id: ID!, $input: PriceListUpdateInput!) { priceListUpdate(id: $id, input: $input) { priceList { id parent { adjustment { type value } } } userErrors { message field code } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/PriceList/734173888\",\n \"input\": {\n \"parent\": {\n \"adjustment\": {\n \"value\": 10,\n \"type\": \"PERCENTAGE_INCREASE\"\n }\n }\n }\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation priceListUpdate($id: ID!, $input: PriceListUpdateInput!) {\n priceListUpdate(id: $id, input: $input) {\n priceList {\n id\n parent {\n adjustment {\n type\n value\n }\n }\n }\n userErrors {\n message\n field\n code\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/PriceList/734173888\",\n \"input\": {\n \"parent\": {\n \"adjustment\": {\n \"value\": 10,\n \"type\": \"PERCENTAGE_INCREASE\"\n }\n }\n }\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n mutation priceListUpdate($id: ID!, $input: PriceListUpdateInput!) {\n priceListUpdate(id: $id, input: $input) {\n priceList {\n id\n parent {\n adjustment {\n type\n value\n }\n }\n }\n userErrors {\n message\n field\n code\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/PriceList/734173888\",\n \"input\": {\n \"parent\": {\n \"adjustment\": {\n \"value\": 10,\n \"type\": \"PERCENTAGE_INCREASE\"\n }\n }\n }\n}\n\nresponse = client.query(query: query, variables: variables)\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n mutation priceListUpdate($id: ID!, $input: PriceListUpdateInput!) {\n priceListUpdate(id: $id, input: $input) {\n priceList {\n id\n parent {\n adjustment {\n type\n value\n }\n }\n }\n userErrors {\n message\n field\n code\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/PriceList/734173888\",\n \"input\": {\n \"parent\": {\n \"adjustment\": {\n \"value\": 10,\n \"type\": \"PERCENTAGE_INCREASE\"\n }\n }\n }\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation priceListUpdate($id: ID!, $input: PriceListUpdateInput!) {\n priceListUpdate(id: $id, input: $input) {\n priceList {\n id\n parent {\n adjustment {\n type\n value\n }\n }\n }\n userErrors {\n message\n field\n code\n }\n }\n}" #### Graphql Input { "id": "gid://shopify/PriceList/734173888", "input": { "parent": { "adjustment": { "value": 10, "type": "PERCENTAGE_INCREASE" } } } } #### Graphql Response { "data": { "priceListUpdate": { "priceList": { "id": "gid://shopify/PriceList/734173888", "parent": { "adjustment": { "type": "PERCENTAGE_INCREASE", "value": 10.0 } } }, "userErrors": [] } } }