Files
openide/plugins/github/resources/graphql/fragment/pullRequestMergeability.graphql
Ivan Semenov 25b6615aa9 [github] convert PR details data provider and service to coroutines
Also merge with state data since it's technically the same thing

GitOrigin-RevId: 77314ee52535cd204c1c812c7dcff4e73c78c9e4
2024-04-23 00:42:32 +00:00

19 lines
289 B
GraphQL

fragment pullRequestMergeability on PullRequest {
mergeable
canBeRebased
mergeStateStatus
baseRef {
refUpdateRule {
...refUpdateRule
}
}
commits(last: 1) {
pageInfo {
...pageInfo
}
nodes {
...pullRequestCommitWithCheckStatuses
}
}
}