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

search_namespaces_where_user_can_import_projects.query.graphql « queries « graphql « import_projects « import_entities « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c41f7116b356a2a6d63dedde3c8e62524d86dc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query searchNamespacesWhereUserCanImportProjects($search: String) {
  currentUser {
    id
    groups(permissionScope: IMPORT_PROJECTS, search: $search) {
      nodes {
        id
        fullPath
        name
        visibility
        webUrl
      }
    }
    namespace {
      id
      fullPath
    }
  }
}