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

available_branches.graphql « queries « graphql « pipeline_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f162bb11d47bfb7d139ba95fd2f4bbdd57128e96 (plain)
1
2
3
4
5
6
7
8
9
query getAvailableBranches($projectFullPath: ID!) {
  project(fullPath: $projectFullPath) @client {
    repository {
      branches {
        name
      }
    }
  }
}