mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Also merge with state data since it's technically the same thing GitOrigin-RevId: 77314ee52535cd204c1c812c7dcff4e73c78c9e4
19 lines
289 B
GraphQL
19 lines
289 B
GraphQL
fragment pullRequestMergeability on PullRequest {
|
|
mergeable
|
|
canBeRebased
|
|
mergeStateStatus
|
|
baseRef {
|
|
refUpdateRule {
|
|
...refUpdateRule
|
|
}
|
|
}
|
|
|
|
commits(last: 1) {
|
|
pageInfo {
|
|
...pageInfo
|
|
}
|
|
nodes {
|
|
...pullRequestCommitWithCheckStatuses
|
|
}
|
|
}
|
|
} |