getPipelineWorkflowApplications

Retrieve pipeline workflows and count how many of the specified applications each contains.

Examples

query GetPipelineWorkflowApplications($input: getPipelineWorkflowApplicationsInput!) {
  getPipelineWorkflowApplications(input: $input) {
    workflows {
      isDefault
      workflowName
      workflowId
      count
      enabled
    }
  }
}

Variables

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

{
  "input": {
    "appIds": ["30966426"]
  }
}

Arguments

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

Argument
Description
Supported fields

List of application IDs to check

appIds [String!]

Fields

Return type: GetPipelineWorkflowApplicationsResponse!

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

Field
Description
Supported fields

List of pipeline workflow applications

isDefault Boolean! workflowName String! workflowId String! count Int enabled Boolean!

Last updated