summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alerts_settings/graphql/mutations/update_current_prometheus_integration.mutation.graphql
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
}