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

Get every run that’s in progress, with the current step the operator is on. Use case group: Build Hardware

Query

query OpenRuns {
  runs(filters: { status: { in: ["pending", "in_progress"] } }, limit: 100) {
    id
    title
    status
    procedure { id title revision }
    partInventory { id serialNumber part { partNumber } }
    currentRunStep { id stepNumber title }
  }
}

Variables

{}

Sample response

{
  "data": {
    "runs": [
      { "id": 1234, "title": "Build #2026-04-26 Unit 1", "status": "in_progress", "procedure": { "id": 12, "title": "Bracket Assembly", "revision": "B" }, "partInventory": { "id": 9876, "serialNumber": "SN-00001", "part": { "partNumber": "BRKT-ASSY-001" } }, "currentRunStep": { "id": 4567, "stepNumber": 5, "title": "Torque check" } }
    ]
  }
}

Notes

Add assignedTo { id name } to filter by operator if you need that view.