GraphQL Mutations

Example GraphQL mutations with authentication.

To get started, login into Sleuth and open GraphiQL.

Create new Code Deployment

mutation CreateCodeDeployment($input: CreateCodeChangeSourceMutationInput!) {
  createCodeChangeSource(input: $input) {
    changeSource {
      name
      slug
      repository {
        provider
        owner
        name
        url
      }
      notifyInSlack
      includeInDashboard   
    }
  }
}

Last updated