dune_query_update
Modify saved Dune Analytics queries by updating name, SQL code, description, tags, or parameters to maintain accurate blockchain data analysis workflows.
Instructions
Update fields of a saved Dune query (name/SQL/description/tags/parameters).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query_id | Yes | ||
| name | No | ||
| query_sql | No | ||
| description | No | ||
| tags | No | ||
| parameters | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"parameters": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null
},
"query_id": {
"type": "integer"
},
"query_sql": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null
}
},
"required": [
"query_id"
],
"type": "object"
}