dune_query_fork
Create a copy of an existing Dune Analytics query to modify and customize for your blockchain data analysis needs without starting from scratch.
Instructions
Fork an existing saved Dune query.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source_query_id | Yes | ||
| name | No |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"source_query_id": {
"type": "integer"
}
},
"required": [
"source_query_id"
],
"type": "object"
}