mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
17 lines
237 B
GraphQL
17 lines
237 B
GraphQL
fragment commitWithCheckStatuses on Commit {
|
|
...commitHash
|
|
status {
|
|
contexts {
|
|
...commitStatusContext
|
|
}
|
|
}
|
|
|
|
checkSuites(first: 100) {
|
|
pageInfo {
|
|
...pageInfo
|
|
}
|
|
nodes {
|
|
...checkSuite
|
|
}
|
|
}
|
|
} |