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

get_projects_with_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: 664991bc11013cb9c57c21077a139b1af56caa5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query getProjectsWithCIJobTokenScope($fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    ciJobTokenScope {
      projects {
        nodes {
          id
          name
          fullPath
        }
      }
    }
  }
}