--- title: savedSearchUpdate - GraphQL Admin description: Updates a saved search. api_version: 2024-10 api_name: admin type: mutation api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/savedSearchUpdate md: >- https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/savedSearchUpdate.txt --- # saved​Search​Update mutation Updates a saved search. ## Arguments * input [Saved​Search​Update​Input!](https://shopify.dev/docs/api/admin-graphql/2024-10/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/2024-10/objects/SavedSearch) The saved search that was updated. * user​Errors [\[User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/2024-10/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": "" } } ```