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

Learn about Searching and Filtering to find specific changes.

Last updated