summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/token_access/graphql/queries/get_projects_with_ci_job_token_scope.query.graphql
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
        }
      }
    }
  }
}