Files
openide/plugins/github/resources/graphql/fragment/commitWithCheckStatuses.graphql
Pavel Gromov f64fdaf85f [github] Fix infinite loading of PR with external CI
* #IDEA-339159 Fixed

GitOrigin-RevId: d203c14ceee04afe7fc164087eea0d1408355d1c
2024-01-16 20:51:48 +00:00

17 lines
237 B
GraphQL

fragment commitWithCheckStatuses on Commit {
...commitHash
status {
contexts {
...commitStatusContext
}
}
checkSuites(first: 100) {
pageInfo {
...pageInfo
}
nodes {
...checkSuite
}
}
}