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
Learn how to work with Documents associated with components and products.
Last updated
Was this helpful?
