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

Next Steps

Learn about managing product changes with Change Orders.

Last updated

Was this helpful?