Skip to main content

Bom

Represents a shared part of work-in-progress BOMs and releases of BOMs.

interface Bom {
healthChecks: [BomHealthCheck!]!
id: ID!
incompleteHealthChecks: [BomHealthCheck!]!
issues: [BomIssue!]!
itemElementAttributes: [BomItemElementAttribute!]!
items(
after: String
before: String
first: Int
last: Int
): BomItemsConnection
name: String!
settings: BomSettings!
sources: [BomSource!]!
}

Fields

Bom.healthChecks ● [BomHealthCheck!]! non-null object

Effective health checks applicable to this BOM.

Bom.id ● ID! non-null scalar

ID of the BOM.

Bom.incompleteHealthChecks ● [BomHealthCheck!]! non-null object

List of incomplete health checks. Some issues reported by these health checks may already be reported and included in the response, but the full set is still being processed and new issues may appear.

Bom.issues ● [BomIssue!]! non-null object

Issues associated with the BOM.

Bom.itemElementAttributes ● [BomItemElementAttribute!]! non-null object

A list of all custom BOM item element's attributes.

Bom.items ● BomItemsConnection object

BOM items.

Bom.items.after ● String scalar

Returns the elements in the list that come after the specified cursor.

Bom.items.before ● String scalar

Returns the elements in the list that come before the specified cursor.

Bom.items.first ● Int scalar

Returns the first _n_ elements from the list.

Bom.items.last ● Int scalar

Returns the last _n_ elements from the list.

Bom.name ● String! non-null scalar

Name of the BOM.

Bom.settings ● BomSettings! non-null object

Settings of the BOM (e.g., currency, production quantity, etc.).

Bom.sources ● [BomSource!]! non-null interface

Sources of the BOM (e.g., a file, a design, or other BOMs).