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

variables.query.graphql « queries « graphql « ci_variable_list « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42dedc462eacacda36733201f0f554f54f0b9658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#import "~/ci/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql"
#import "~/ci/ci_variable_list/graphql/fragments/ci_instance_variable.fragment.graphql"
#import "~/graphql_shared/fragments/page_info.fragment.graphql"

query getVariables(
  $after: String
  $before: String
  $first: Int
  $last: Int
  $sort: CiVariableSort = KEY_ASC
) {
  ciVariables(after: $after, before: $before, first: $first, last: $last, sort: $sort) {
    pageInfo {
      ...PageInfo
    }
    nodes {
      ...BaseCiVariable
      ...BaseCiInstanceVariable
    }
  }
}