Duro API
ChangelogStatusApp
  • Welcome to Duro Dev Center
  • Getting Started
    • Introduction
    • Authentication
    • Hello World
  • Core Concepts
    • Components & Products
    • Documents
    • Change Orders
  • Advanced Topics
    • Searching and Filtering
    • Datarooms & RBAC
    • Webhooks
    • Error Handling
  • Library Configuration
    • Introduction to Duro's Config System
    • Category Registry
    • Revision Scheme
    • CPN Generation Scheme
    • CPN Schema Reference
  • Community
    • Developer Community
Powered by GitBook
On this page
  • Document Types
  • Querying Documents
  • Document Operations
  • File Management
  • Next Steps
Export as PDF
  1. Core Concepts

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

mutation {
  createDocument(input: {
    title: "Assembly Instructions"
    componentId: "comp_123"
    fileUrl: "https://example.com/file.pdf"
  }) {
    document {
      id
      title
    }
  }
}

File Management

  • Direct upload URLs

  • Version control

  • Access permissions

  • File metadata

Next Steps

PreviousComponents & ProductsNextChange Orders

Last updated 6 months ago

Learn about managing product changes with .

Change Orders