summaryrefslogtreecommitdiff
path: root/src/pulls.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'src/pulls.graphql')
-rw-r--r--src/pulls.graphql28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/pulls.graphql b/src/pulls.graphql
new file mode 100644
index 0000000..a25f247
--- /dev/null
+++ b/src/pulls.graphql
@@ -0,0 +1,28 @@
+query PullsQuery($owner: String!, $name: String!, $label: String!, $after: String, $batch: Int!) {
+ rateLimit {
+ limit
+ cost
+ remaining
+ resetAt
+ }
+ repository(owner: $owner, name: $name) {
+ pullRequests(first: $batch, after: $after, labels: [ $label ], orderBy: { direction: DESC, field: UPDATED_AT }) {
+ pageInfo {
+ endCursor
+ hasNextPage
+ }
+ edges {
+ node {
+ id
+ bodyHTML
+ closed
+ merged
+ baseRefName
+ title
+ updatedAt
+ url
+ }
+ }
+ }
+ }
+} \ No newline at end of file