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

update_current_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: 5bd638206291ad86994a55b7e4b6947fda971776 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
mutation updateCurrentPrometheusIntegration(
  $id: String
  $name: String
  $active: Boolean
  $token: String
  $type: String
  $url: String
  $apiUrl: String
  $samplePayload: String
) {
  updateCurrentIntegration(
    id: $id
    name: $name
    active: $active
    token: $token
    type: $type
    url: $url
    apiUrl: $apiUrl
    samplePayload: $samplePayload
  ) @client
}