Welcome to mirror list, hosted at ThFree Co, Russian Federation.

take_ownership.mutation.graphql « mutations « graphql « pipeline_schedules « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e410ef91d8be0135e8d6564e428f8c1fc174b68e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
mutation takeOwnership($id: CiPipelineScheduleID!) {
  pipelineScheduleTakeOwnership(input: { id: $id }) {
    pipelineSchedule {
      id
      owner {
        id
        name
      }
    }
    errors
  }
}