summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/token_access/graphql/queries/inbound_get_projects_with_ci_job_token_scope.query.graphql
blob: c51bdcbf7d2ece38c34804704a018375e91f541e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query inboundGetProjectsWithCIJobTokenScope($fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    ciJobTokenScope {
      inboundAllowlist {
        nodes {
          id
          name
          namespace {
            id
            fullPath
          }
          fullPath
        }
      }
    }
  }
}