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

get_project.query.graphql « queries « graphql « branches « jira_connect « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3428e816d78e6e02a44574b62c2beacf923e473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query getProject(
  $projectPath: ID!
  $branchNamesLimit: Int!
  $branchNamesOffset: Int!
  $branchNamesSearchPattern: String!
) {
  project(fullPath: $projectPath) {
    repository {
      branchNames(
        limit: $branchNamesLimit
        offset: $branchNamesOffset
        searchPattern: $branchNamesSearchPattern
      )
      rootRef
    }
  }
}