mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
14 lines
366 B
GraphQL
14 lines
366 B
GraphQL
query($repoOwner: String!, $repoName: String!, $pageSize: Int = 100, $cursor: String) {
|
|
repository(owner: $repoOwner, name: $repoName) {
|
|
branchProtectionRules(first: $pageSize, after: $cursor) {
|
|
pageInfo {
|
|
...pageInfo
|
|
}
|
|
nodes {
|
|
...nodeInfo
|
|
pattern
|
|
}
|
|
}
|
|
}
|
|
}
|