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

reset_prometheus_token.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: 8f34521b9fdc92f743b5983f158a73c05b413ce2 (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/integration_item.fragment.graphql"

mutation resetPrometheusIntegrationToken($id: ID!) {
  prometheusIntegrationResetToken(input: { id: $id }) {
    errors
    integration {
      ...IntegrationItem
    }
  }
}