deepsource_project_runs
Retrieve and filter analysis runs for a DeepSource project using cursor-based pagination. Navigate pages with first, after, last, and before parameters, and filter by specific analyzers for targeted code quality insights.
Instructions
List analysis runs for a DeepSource project with support for Relay-style cursor-based pagination and filtering. For forward pagination, use first (defaults to 10) with optional after cursor. For backward pagination, use last (defaults to 10) with optional before cursor. The response includes pageInfo with hasNextPage, hasPreviousPage, startCursor, and endCursor to help navigate through pages.
Filtering options:
analyzerIn: Filter runs by specific analyzers
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | Cursor to fetch records after this position | |
| analyzerIn | No | Filter runs by specific analyzers (e.g. ["python", "javascript"]) | |
| before | No | Cursor to fetch records before this position | |
| first | No | Number of items to return after the "after" cursor (default: 10) | |
| last | No | Number of items to return before the "before" cursor (default: 10) | |
| offset | No | Legacy pagination: Number of items to skip | |
| projectKey | Yes | The unique identifier for the DeepSource project |