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

update_http_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: 2cf56613673d4962d404ce850fc1a9795e226923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import "../fragments/http_integration_item.fragment.graphql"

mutation updateHttpIntegration($id: ID!, $name: String!, $active: Boolean!) {
  httpIntegrationUpdate(input: { id: $id, name: $name, active: $active }) {
    errors
    # We have ID in a deeply nested fragment
    # eslint-disable-next-line @graphql-eslint/require-id-when-available
    integration {
      ...HttpIntegrationItem
    }
  }
}