Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update_prometheus_integration.mutation.graphql « mutations « graphql « alerts_settings « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62761730bd2cb655a0574fe0a0fe72221a9c7c5c (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/integration_item.fragment.graphql"

mutation updatePrometheusIntegration($id: ID!, $apiUrl: String!, $active: Boolean!) {
  prometheusIntegrationUpdate(input: { id: $id, apiUrl: $apiUrl, active: $active }) {
    errors
    integration {
      ...IntegrationItem
    }
  }
}