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

groupAndProject.query.graphql « queries « graphql « import_groups « import_entities « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6124f84025e7e7e33b2f5a9414d04baeadfeecc (plain)
1
2
3
4
5
6
7
8
9
query groupAndProject($fullPath: ID!) {
  existingGroup: group(fullPath: $fullPath) {
    id
  }

  existingProject: project(fullPath: $fullPath) {
    id
  }
}