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

branch_rules.query.graphql « queries « graphql « branch_rules « repository « settings « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49e089e7805f9549b627746ac28e57f9cced88d8 (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
25
query getBranchRules($projectPath: ID!) {
  project(fullPath: $projectPath) {
    id
    branchRules {
      nodes {
        name
        isDefault
        branchProtection {
          allowForcePush
          codeOwnerApprovalRequired
        }
        externalStatusChecks {
          nodes {
            id
          }
        }
        approvalRules {
          nodes {
            id
          }
        }
      }
    }
  }
}