2026-05-11 00:32:12 +08:00
|
|
|
query PullRequestQuery($id: ID!) {
|
|
|
|
|
node(id: $id) {
|
|
|
|
|
__typename
|
|
|
|
|
... on PullRequest {
|
|
|
|
|
title
|
|
|
|
|
body
|
|
|
|
|
state
|
|
|
|
|
isDraft
|
2026-05-12 02:19:08 +08:00
|
|
|
createdAt
|
2026-05-12 01:34:33 +08:00
|
|
|
baseRef {
|
|
|
|
|
name
|
|
|
|
|
}
|
|
|
|
|
headRef {
|
|
|
|
|
name
|
|
|
|
|
}
|
|
|
|
|
author {
|
|
|
|
|
__typename
|
|
|
|
|
login
|
|
|
|
|
avatarUrl(size: 32)
|
|
|
|
|
}
|
2026-05-11 00:32:12 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|