update_query
Update specific fields of a saved Redash query (name, SQL, description, or tags) while leaving other fields unchanged. Returns the query id, name, and update time.
Instructions
Update fields of an existing saved query. Behavior: only the fields you pass are changed (name, SQL, description, or tags); any omitted field is left untouched. Returns the query's id, name, and updated_at. Usage: find the query_id with list_queries or get_query; to create a brand-new query instead, use create_query.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New display name (omit to keep current) | |
| tags | No | New tag list, replacing the existing tags (omit to keep current) | |
| query | No | New SQL statement (omit to keep current) | |
| query_id | Yes | ID of the saved query to update (from list_queries) | |
| description | No | New description (omit to keep current) |