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

state_version.fragment.graphql « fragments « graphql « terraform « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70ba5c960be572907a6d5eb9cac9144d0ad4b0db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#import "~/graphql_shared/fragments/user.fragment.graphql"

fragment StateVersion on TerraformStateVersion {
  downloadPath
  serial
  updatedAt

  createdByUser {
    ...User
  }

  job {
    detailedStatus {
      detailsPath
      group
      icon
      label
      text
    }

    pipeline {
      id
      path
    }
  }
}