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

search_namespaces_where_user_can_transfer_projects.query.graphql « queries « graphql « settings « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4bcb8c869c913971f8edac18dad07ca802d024d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#import "~/graphql_shared/fragments/page_info.fragment.graphql"

query searchNamespacesWhereUserCanTransferProjects(
  $search: String = ""
  $after: String = ""
  $first: Int = null
) {
  currentUser {
    id
    groups(permissionScope: TRANSFER_PROJECTS, search: $search, after: $after, first: $first) {
      nodes {
        id
        fullName
      }
      pageInfo {
        ...PageInfo
      }
    }
    namespace {
      id
      fullName
    }
  }
}