getCbomAssetGraph

Retrieves a graph representation of a Cloud BOM showing its relationships with various entities, dependencies, and related components.

Examples

query GetCBOMAssetGraph($cbomId: String!) {
  getCBOMAssetGraph(cbomId: $cbomId) {
    nodes {
      id
      type
      metaData
    }
    edges {
      id
      type
      metaData
      target
      source
    }
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

{
  "cbomId": "example"
}

Arguments

You can use the following argument(s) to customize your getCBOMAssetGraph query.

Argument
Description
Supported fields

cbomId String! required

Unique identifier of the Cloud BOM to generate the graph for

Fields

Return type: IssueGraph!

You can use the following field(s) to specify what information your getCBOMAssetGraph query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

nodes [Node!]!

List of nodes representing various entities in the issue graph

id Float! type NodeType! metaData JSON!

edges [Edge!]!

List of edges representing connections between nodes in the issue graph

id Float! type EdgeType! metaData JSON target Float! source Float!

Last updated