--- title: savedSearchUpdate - GraphQL Admin description: Updates a saved search. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/savedsearchupdate md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/savedsearchupdate.md --- # saved​Search​Update mutation Updates a saved search. ## Arguments * input [Saved​Search​Update​Input!](https://shopify.dev/docs/api/admin-graphql/latest/input-objects/SavedSearchUpdateInput) required The input fields to update a saved search. *** ## Saved​Search​Update​Payload returns * saved​Search [Saved​Search](https://shopify.dev/docs/api/admin-graphql/latest/objects/SavedSearch) The saved search that was updated. * 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 * ### savedSearchUpdate reference ## Mutation Reference ```graphql mutation savedSearchUpdate($input: SavedSearchUpdateInput!) { savedSearchUpdate(input: $input) { savedSearch { # SavedSearch fields } userErrors { field message } } } ``` ## Input ```json { "input": { "id": "gid://shopify//10079785100", "name": "", "query": "" } } ``` ##### Variables ``` { "input": { "id": "gid://shopify//10079785100", "name": "", "query": "" } } ``` ##### Schema ``` input SavedSearchUpdateInput { id: ID! name: String query: String } ```