Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.firstresonance.io/llms.txt

Use this file to discover all available pages before exploring further.

Overview

All open issues grouped by disposition type for triage. Use case group: Track Quality

Query

query OpenIssuesByDisposition {
  issues(
    filters: { status: { in: ["pending", "in_progress", "in_review"] } }
    limit: 250
  ) {
    id
    title
    status
    issueDispositionType { id title }
    assignedTo { id name }
    _created
  }
}

Variables

{}

Sample response

{
  "data": {
    "issues": [
      { "id": 7777, "title": "Surface scratches on RX-22 lot 4", "status": "in_progress", "issueDispositionType": { "id": 3, "title": "Rework" }, "assignedTo": { "id": 42, "name": "Operator Bot" }, "_created": "2026-04-26T18:00:00Z" }
    ]
  }
}

Notes

Group client-side by issueDispositionType.id to produce a Pareto chart of disposition types.