# tagsRemove - admin-graphql - MUTATION Version: 2024-10 ## Description Remove tags from an order, a draft order, a customer, a product, or an online store article. ### Access Scopes ## Arguments * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - The ID of the resource to remove tags from. * [tags](/docs/api/admin-graphql/2024-10/scalars/String): String! - A list of tags to remove from the resource in the form of an array of strings. Example value: `["tag1", "tag2", "tag3"]`. ## Returns * [node](/docs/api/admin-graphql/2024-10/interfaces/Node): Node The object that was updated. * [userErrors](/docs/api/admin-graphql/2024-10/objects/UserError): UserError! The list of errors that occurred from executing the mutation. ## Examples ### Remove tags from a customer 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 removeTags($id: ID!, $tags: [String!]!) { tagsRemove(id: $id, tags: $tags) { node { id } userErrors { message } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/Customer/544365967\",\n \"tags\": [\n \"Bob\"\n ]\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation removeTags($id: ID!, $tags: [String!]!) {\n tagsRemove(id: $id, tags: $tags) {\n node {\n id\n }\n userErrors {\n message\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/Customer/544365967\",\n \"tags\": [\n \"Bob\"\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 removeTags($id: ID!, $tags: [String!]!) {\n tagsRemove(id: $id, tags: $tags) {\n node {\n id\n }\n userErrors {\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/Customer/544365967\",\n \"tags\": [\"Bob\"]\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 removeTags($id: ID!, $tags: [String!]!) {\n tagsRemove(id: $id, tags: $tags) {\n node {\n id\n }\n userErrors {\n message\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/Customer/544365967\",\n \"tags\": [\n \"Bob\"\n ]\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation removeTags($id: ID!, $tags: [String!]!) {\n tagsRemove(id: $id, tags: $tags) {\n node {\n id\n }\n userErrors {\n message\n }\n }\n}" #### Graphql Input { "id": "gid://shopify/Customer/544365967", "tags": [ "Bob" ] } #### Graphql Response { "data": { "tagsRemove": { "node": { "id": "gid://shopify/Customer/544365967" }, "userErrors": [] } } }