For the complete documentation index, see llms.txt. This page is also available as Markdown.

Documents

Learn how to manage technical documentation and files through the Duro API.

Document Types

Duro supports various document types:

  • CAD Files

  • Technical Drawings

  • Specifications

  • Test Reports

  • Quality Documentation

Querying Documents

Here's how to fetch documents:

query {
  documents(first: 10) {
    edges {
      node {
        id
        title
        fileType
        version
        createdAt
        createdBy {
          name
        }
      }
    }
  }
}

Document Operations

File Management

  • Direct upload URLs

  • Version control

  • Access permissions

  • File metadata


Documents on Change Orders

Documents can be attached to change orders as supporting reference material. See Attaching Documents to a Change Order for usage.

Querying Documents on a Change Order

Next Steps

Learn about managing product changes with Change Orders.

Last updated

Was this helpful?