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

state.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: 49f9ae3dd976417d599616daf05809404686ee05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "~/graphql_shared/fragments/user.fragment.graphql"
#import "./state_version.fragment.graphql"

fragment State on TerraformState {
  id
  name
  lockedAt
  updatedAt

  lockedByUser {
    ...User
  }

  latestVersion {
    ...StateVersion
  }
}