-
Hi, this may be kind of a weird one (or maybe I'm just phrasing it weirdly). Consider the following JSON response from a GH GraphQL query: {
"data": {
"search": {
"nodes": [
{
"number": 6666,
"title": "Some PR title",
"author": {
"login": "sgtpepper"
},
"createdAt": "2022-12-21T02:35:59Z",
"comments": {
"nodes": [
{
"author": {
"login": "jamesdean"
},
"createdAt": "2022-12-21T02:36:40Z",
"bodyText": "I love this PR"
},
{
"author": {
"login": "billybob"
},
"createdAt": "2022-12-22T00:04:39Z",
"bodyText": "This PR is the best thing since sliced bread"
}
]
}
}
]
}
}
} As can be seen, the
In other words, for each comment node in the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
OK so I've got a version of this working:
Note that you'll need to use the latest version
I have made a new release |
Beta Was this translation helpful? Give feedback.
OK so I've got a version of this working:
Note that you'll need to use the latest version
v2.1.0
for …