summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/graphql/fragments/linked_pipelines.fragment.graphql
blob: 3bf6d8dc9d8de9484e742c145fc7f67160d5b3ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
fragment LinkedPipelineData on Pipeline {
  id
  iid
  path
  status: detailedStatus {
    group
    label
    icon
  }
  sourceJob {
    name
  }
  project {
    name
    fullPath
  }
}