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
  • Change Order Structure
  • Creating Change Orders
  • Workflow States
  • Best Practices
  • Next Steps
Export as PDF
  1. Core Concepts

Change Orders

Change Orders (COs) help manage and track modifications to your products and components.

Change Order Structure

query {
  changeOrders(first: 10) {
    edges {
      node {
        id
        number
        title
        status
        affectedItems {
          components {
            id
            name
          }
          documents {
            id
            title
          }
        }
      }
    }
  }
}

Creating Change Orders

mutation {
  createChangeOrder(input: {
    title: "Update Component Specifications"
    description: "Updating material specifications for better durability"
    affectedComponentIds: ["comp_123"]
  }) {
    changeOrder {
      id
      number
    }
  }
}

Workflow States

  • Draft

  • In Review

  • Approved

  • Rejected

Best Practices

  • Include clear descriptions

  • Link all affected items

  • Maintain approval chains

  • Document implementation results

Next Steps

PreviousDocumentsNextSearching and Filtering

Last updated 6 months ago

Learn about to find specific changes.

Searching and Filtering