dbt-get-run-results
Get per-node results from a dbt invocation, with optional filtering by status and fields extraction for efficient analysis of run history and test coverage.
Instructions
Get per-node results from a specific dbt invocation (or the latest run if invocationId omitted)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| status | No | Filter results by status (pass | error | fail | skipped | runtime error | success) | |
| invocationId | No | invocation_id from a run; if omitted, the latest run_results.json in target/ is used | |
| extractFields | No | Comma-separated dotted paths to project from response (e.g. 'id,name,owner.name,columns.*.name'). Use `*` as wildcard for arrays/objects. Wrap field names with dots in backticks. Reduces response tokens dramatically on large entities. |