diff options
Diffstat (limited to 'src/issues.graphql')
-rw-r--r-- | src/issues.graphql | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/issues.graphql b/src/issues.graphql new file mode 100644 index 0000000..93a4dc0 --- /dev/null +++ b/src/issues.graphql @@ -0,0 +1,26 @@ +query IssuesQuery($owner: String!, $name: String!, $label: String!, $after: String, $since: DateTime, $batch: Int!) { + rateLimit { + limit + cost + remaining + resetAt + } + repository(owner: $owner, name: $name) { + issues(first: $batch, after: $after, filterBy: { labels: [ $label ], since: $since }) { + pageInfo { + endCursor + hasNextPage + } + edges { + node { + id + bodyHTML + closed + title + updatedAt + url + } + } + } + } +}
\ No newline at end of file |