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

get_states.query.graphql « queries « graphql « terraform « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9453e32b1b5b2a54fdcd40c18a3b567fc7cca13f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import "../fragments/state.fragment.graphql"
#import "~/graphql_shared/fragments/pageInfo.fragment.graphql"

query getStates($projectPath: ID!, $first: Int, $last: Int, $before: String, $after: String) {
  project(fullPath: $projectPath) {
    terraformStates(first: $first, last: $last, before: $before, after: $after) {
      count

      nodes {
        ...State
      }

      pageInfo {
        ...PageInfo
      }
    }
  }
}