From da07a2ca3a8c5ee97eac179b28dc3d4a064fd026 Mon Sep 17 00:00:00 2001 From: tilpner Date: Thu, 28 May 2020 16:42:03 +0200 Subject: Initial commit --- graphql/labels.graphql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 graphql/labels.graphql (limited to 'graphql/labels.graphql') diff --git a/graphql/labels.graphql b/graphql/labels.graphql new file mode 100644 index 0000000..671fff0 --- /dev/null +++ b/graphql/labels.graphql @@ -0,0 +1,14 @@ +query RepoLabels($owner: String!, $name: String!, $after: String) { + repository(owner: $owner, name: $name) { + labels(first:100, after: $after) { + pageInfo { hasNextPage } + edges { + cursor + node { + name + url + } + } + } + } +} -- cgit v1.2.3