BomWip
Represents a work-in-progress BOM (i.e., it is mutable and could change dynamically).
type BomWip implements Bom {
bomId: String!
costedBoms(
after: String
before: String
first: Int
last: Int
): CostedBomsConnection
createdAt: DateTime!
healthChecks: [BomHealthCheck!]!
id: ID!
incompleteHealthChecks: [BomHealthCheck!]!
issues: [BomIssue!]!
itemElementAttributes: [BomItemElementAttribute!]!
items(
after: String
before: String
first: Int
last: Int
): BomItemsConnection
name: String!
releases(
after: String
before: String
first: Int
last: Int
): BomReleasesConnection
settings: BomSettings!
sources: [BomSource!]!
updatedAt: DateTime!
}
Fields
BomWip.bomId ● String! non-null scalar
Identifier of the BOM.
BomWip.costedBoms ● CostedBomsConnection object
A collection of all costed BOMs created from this BOM.