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

search_forkable_namespaces.query.graphql « queries « new « forks « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 089b57815bdf6c3b1939bbb994418ceb4ad93a15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query searchForkableNamespaces($projectPath: ID!, $search: String) {
  project(fullPath: $projectPath) {
    id
    forkTargets(search: $search) {
      nodes {
        id
        fullPath
        name
        visibility
      }
    }
  }
}