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