summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alerts_settings/graphql/mutations/reset_http_token.mutation.graphql
blob: c0754d8e32b4125dde1203e8ea4ee5f3c3678a67 (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/http_integration_item.fragment.graphql"

mutation resetHttpIntegrationToken($id: ID!) {
  httpIntegrationResetToken(input: { id: $id }) {
    errors
    integration {
      ...HttpIntegrationItem
    }
  }
}