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
  • Components
  • Products
  • Common Operations
  • Next Steps
Export as PDF
  1. Core Concepts

Components & Products

Learn how to manage components and product structures through the API.

Components

Components are the building blocks of your products. Here's how to query components:

query {
  components(first: 10) {
    edges {
      node {
        id
        name
        partNumber
        revision
        status
      }
    }
  }
}

Products

Products represent the complete assembly of components:

query {
  products(first: 10) {
    edges {
      node {
        id
        name
        version
        components {
          totalCount
        }
      }
    }
  }
}

Common Operations

  • Creating components

  • Updating component details

  • Managing BOMs

  • Handling revisions

Next Steps

PreviousHello WorldNextDocuments

Last updated 6 months ago

Learn how to work with associated with components and products.

Documents