wip: pull request view & md rendering

This commit is contained in:
2026-05-11 00:32:12 +08:00
parent 9f1e051073
commit c29a923e0e
36 changed files with 2716 additions and 99 deletions

View File

@@ -0,0 +1,11 @@
query PullRequestQuery($id: ID!) {
node(id: $id) {
__typename
... on PullRequest {
title
body
state
isDraft
}
}
}