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

mutation updateHttpIntegration($id: ID!, $name: String!, $active: Boolean!) {
  httpIntegrationUpdate(input: { id: $id, name: $name, active: $active }) {
    errors
    integration {
      ...HttpIntegrationItem
    }
  }
}