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

Find parts by part number or description substring. Use case group: Build Hardware

Query

query SearchParts($q: String!, $limit: Int) {
  parts(filters: { search: $q }, limit: $limit) {
    id
    partNumber
    description
    revision
    partType
    status
    partSubtypes { id name }
  }
}

Variables

{ "q": "BRKT", "limit": 25 }

Sample response

{
  "data": {
    "parts": [
      {
        "id": 12,
        "partNumber": "BRKT-001",
        "description": "Mounting bracket, aluminum",
        "revision": "B",
        "partType": "part",
        "status": "released",
        "partSubtypes": [{ "id": 7, "name": "Mounting hardware" }]
      }
    ]
  }
}

Notes

If you need exact-match by part number, swap search for partNumber: { eq: "..." } in the filter.