--- title: draftOrderBulkRemoveTags - GraphQL Admin description: Removes tags from multiple draft orders. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/latest/mutations/draftOrderBulkRemoveTags md: >- https://shopify.dev/docs/api/admin-graphql/latest/mutations/draftOrderBulkRemoveTags.md --- # draft​Order​Bulk​Remove​Tags mutation Requires `write_draft_orders` access scope. Also: The user must have access to manage draft orders. Removes tags from multiple draft orders. ## Arguments * ids [\[ID!\]](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) The IDs of the draft orders to remove tags from. * saved​Search​Id [ID](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) The ID of the draft order saved search for filtering draft orders on. * search [String](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) The conditions for filtering draft orders on. See the detailed [search syntax](https://shopify.dev/api/usage/search-syntax). * tags [\[String!\]!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) required List of tags to be removed. *** ## Draft​Order​Bulk​Remove​Tags​Payload returns * job [Job](https://shopify.dev/docs/api/admin-graphql/latest/objects/Job) The asynchronous job for removing tags from the draft orders. * user​Errors [\[User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/UserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### draftOrderBulkRemoveTags reference ## Mutation Reference ```graphql mutation draftOrderBulkRemoveTags($search: String, $savedSearchId: ID, $ids: [ID!], $tags: [String!]!) { draftOrderBulkRemoveTags(search: $search, savedSearchId: $savedSearchId, ids: $ids, tags: $tags) { job { # Job fields } userErrors { field message } } } ``` ## Input ##### Variables ```json { "search": "", "savedSearchId": "gid://shopify//10079785100", "ids": [ "gid://shopify//10079785100" ], "tags": [ "" ] } ```