getPipelineApplications

Retrieve pipeline applications with their selection state for a specific workflow.

Examples

query GetPipelineApplications($input: GetPipelineApplicationsInput!) {
  getPipelineApplications(input: $input) {
    total
    offset
    totalFilteredApps
    applications {
      appName
      appType
      appId
      selected
      disabled
    }
  }
}

Variables

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

{
  "input": {
    "isDefault": true,
    "policyWorkflowId": "example",
    "searchValue": "example",
    "offset": 0,
    "limit": 100
  }
}

Arguments

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

Argument
Description
Supported fields

Filter and pagination parameters for pipeline applications

isDefault Boolean policyWorkflowId String searchValue String offset Float limit Float

Fields

Return type: GetPipelineApplicationsResponse!

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

Field
Description
Supported fields

total Int

Total number of applications

offset Int

Pagination offset

totalFilteredApps Int

Total number of filtered applications

applications [WfApp!]

List of applications

appName String appType String appId String selected Boolean disabled Boolean

Last updated