mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
this allows us to avoid loading all user teams (costly) and avoid loading branch protection rules (fails for non-admins) #Fixed IDEA-336300 GitOrigin-RevId: 79416686cf100b391a446ba26e218f457387eb2b
44 lines
499 B
GraphQL
44 lines
499 B
GraphQL
fragment pullRequestInfo on PullRequest {
|
|
...pullRequestInfoShort
|
|
|
|
body
|
|
|
|
author {
|
|
...actorInfo
|
|
}
|
|
createdAt
|
|
|
|
reviewDecision
|
|
reviews(last: 100) {
|
|
nodes {
|
|
...pullRequestReview
|
|
}
|
|
}
|
|
|
|
baseRefName
|
|
baseRefOid
|
|
baseRepository {
|
|
owner {
|
|
login
|
|
}
|
|
isFork
|
|
}
|
|
|
|
baseRef {
|
|
refUpdateRule {
|
|
...refUpdateRule
|
|
}
|
|
}
|
|
|
|
headRefName
|
|
headRefOid
|
|
headRepository {
|
|
owner {
|
|
login
|
|
}
|
|
nameWithOwner
|
|
isFork
|
|
url
|
|
sshUrl
|
|
}
|
|
} |