query
Retrieve issues from YouTrack using native query syntax. Filter by fields, limit results, and get matching issues.
Instructions
Raw YouTrack query using native syntax (returns issues matching the expression)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | YouTrack query syntax string. Examples: • "state: Open" - All open issues • "project: PROJECT-1 assignee: me" - My issues in project • "priority: High created: >2025-01-01" - High priority recent issues • "#bug -state: Resolved" - Open bugs (full-text search) | |
| fields | No | Comma-separated field names to return. Example: "id,summary,state,priority" or "id,summary,description,assignee,created" | id,summary,description,state,priority,reporter,assignee |
| limit | No | Maximum number of issues to return (1-1000, default: 50) |