summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alerts_settings/graphql/mutations/update_current_intergration.mutation.graphql
blob: 3505241309ec4e74df5756bef35dc3ec8985001a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
mutation updateCurrentIntegration(
  $id: String
  $name: String
  $active: Boolean
  $token: String
  $type: String
  $url: String
  $apiUrl: String
) {
  updateCurrentIntegration(
    id: $id
    name: $name
    active: $active
    token: $token
    type: $type
    url: $url
    apiUrl: $apiUrl
  ) @client
}