summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alerts_settings/graphql/queries/get_integrations.query.graphql
blob: ac9304391f98609b48f9075baa0aa3c37a55763e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "../fragments/integration_item.fragment.graphql"

query getIntegrations($projectPath: ID!) {
  project(fullPath: $projectPath) {
    id
    alertManagementIntegrations {
      nodes {
        __typename
        ...IntegrationItem
      }
    }
  }
}