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

get_ci_job_token_scope.query.graphql « queries « graphql « token_access « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e5334b468fb419042ae2d7edccc025bfe336d18 (plain)
1
2
3
4
5
6
7
8
query getCIJobTokenScope($fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    ciCdSettings {
      jobTokenScopeEnabled
    }
  }
}