Skip to content

Instantly share code, notes, and snippets.

@lilac
Last active April 15, 2019 02:24
Show Gist options
  • Save lilac/80594371ea7ee8b2c9de80efae80b8be to your computer and use it in GitHub Desktop.
Save lilac/80594371ea7ee8b2c9de80efae80b8be to your computer and use it in GitHub Desktop.
List issues (with comments) of a repository
{
repository(name: "996.ICU", owner: "996icu") {
id
issues(first: 50) {
totalCount
nodes {
id
title
body
bodyText
createdAt
author {
login
avatarUrl
url
}
labels(first: 10) {
totalCount
nodes {
id
description
name
}
}
comments(first: 10) {
totalCount
nodes {
id
body
author {
login
avatarUrl
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment