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
Learn about managing product changes with Change Orders.
Last updated
Was this helpful?
