gitlab-org--gitlab-foss/app/assets/javascripts/pipeline_editor/graphql/typedefs.graphql

24 lines
305 B
GraphQL

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
}