gitlab-org--gitlab-foss/app/assets/javascripts/ci_variable_list/graphql/queries/project_variables.query.gra...

20 lines
471 B
GraphQL

#import "~/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql"
#import "~/graphql_shared/fragments/page_info.fragment.graphql"
query getProjectVariables($after: String, $first: Int = 100, $fullPath: ID!) {
project(fullPath: $fullPath) {
id
ciVariables(after: $after, first: $first) {
pageInfo {
...PageInfo
}
nodes {
...BaseCiVariable
environmentScope
masked
protected
}
}
}
}