summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/graphql/typedefs.graphql
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
}