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: 46e9b108b41982bed99489683fc0b51d5e0b34a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query getAvailableBranches(
  $limit: Int!
  $offset: Int!
  $projectFullPath: ID!
  $searchPattern: String!
) {
  project(fullPath: $projectFullPath) {
    repository {
      branchNames(limit: $limit, offset: $offset, searchPattern: $searchPattern)
    }
  }
}