summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/components/table/graphql/mutations/job_play.mutation.graphql
blob: c94b045ac40f8139e7bfd42a60580fb481841cec (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/job.fragment.graphql"

mutation playJob($id: CiBuildID!) {
  jobPlay(input: { id: $id }) {
    job {
      ...Job
    }
    errors
  }
}