getIssueGraph

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

Examples

query GetIssueGraph($issueId: String!) {
  getIssueGraph(issueId: $issueId) {
    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.

{
  "issueId": "30966426-oxPolicy_securityCloudScan_100-example"
}

Arguments

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

Argument
Description
Supported fields

issueId String! required

Unique identifier of the issue to generate the graph for

Fields

Return type: IssueGraph!

You can use the following field(s) to specify what information your getIssueGraph 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