Skip to content
This repository was archived by the owner on Jan 1, 2021. It is now read-only.

Commit db07809

Browse files
authored
Update query_issue.yaml
1 parent 64844de commit db07809

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/graph_ql/query_issue.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
query:
22
query($issueId:ID!) {
3-
issue(id:$issueId) {
4-
body
3+
node(id: $issueId) {
4+
__typename
5+
... on Issue {
6+
body
7+
bodyHTML
8+
bodyText
9+
}
510
}
611
}
712
variables:

0 commit comments

Comments
 (0)