I'am trying this get github issues by their ids through graphql endpoints
And tried this code
{
repository(name: "reponame", owner: "ownername") {
issue1: issue(number: 2) {
title
createdAt
}
issue2: issue(number: 3) {
title
createdAt
}
issue3: issue(number: 10) {
title
createdAt
}
}
}
With this, I am able to get back the title, but I am also trying to get all of the comments of the issue. I tried adding comments
to the above code, but it didn't work.
I want to modify the above code only.
Thanks in advance!