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

typedefs.graphql « graphql « pipeline_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 508ff22c46e4953be8706d00d16b0dc808a02003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
type PipelineEditorApp {
  status: String!
}

type BranchList {
  current: WorkBranch!
  lastCommit: WorkBranch!
}

type EtagValues {
  pipeline: String!
}

type WorkBranch {
  name: String!
  commit: String
}

extend type Query {
  app: PipelineEditorApp
  etags: EtagValues
  workBranches: BranchList
}