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

security_training_vulnerability.query.graphql « graphql « security_configuration « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 891e0dda3126f7815c3996b979491751ffdf491d (plain)
1
2
3
4
5
6
7
8
9
10
11
query getSecurityTrainingUrls($projectFullPath: ID!, $identifierExternalIds: [String!]!) {
  project(fullPath: $projectFullPath) {
    id
    securityTrainingUrls(identifierExternalIds: $identifierExternalIds) {
      name
      status
      url
      identifier
    }
  }
}