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

mutation createHttpIntegration($projectPath: ID!, $name: String!, $active: Boolean!) {
  httpIntegrationCreate(input: { projectPath: $projectPath, name: $name, active: $active }) {
    errors
    integration {
      ...IntegrationItem
    }
  }
}