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

inbound_add_project_ci_job_token_scope.mutation.graphql « mutations « 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: f030a892af2ca2b27cbbaaaeb444e534ad11e817 (plain)
1
2
3
4
5
6
7
mutation inboundAddProjectCIJobTokenScope($projectPath: ID!, $targetProjectPath: ID!) {
  ciJobTokenScopeAddProject(
    input: { projectPath: $projectPath, targetProjectPath: $targetProjectPath, direction: INBOUND }
  ) {
    errors
  }
}