aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/list/ListLabels.graphql
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-04-07 21:29:50 +0200
committerGitHub <noreply@github.com>2021-04-07 21:29:50 +0200
commitabbed0ff129755386ccbf89409ff8c3877f86d20 (patch)
tree01d1a61d5f775eaef585130be15ea8a26d32ede4 /webui/src/pages/list/ListLabels.graphql
parentc7a441bad6a7ca247d955b63d2ba604435fdaab6 (diff)
parentccdaa16052a1da7ea5c87fc2104363377df98b95 (diff)
downloadgit-bug-abbed0ff129755386ccbf89409ff8c3877f86d20.tar.gz
Merge pull request #623 from GlancingMind/upstream-additional-filters-for-bug-list
WebUI: Additional filters for bug list
Diffstat (limited to 'webui/src/pages/list/ListLabels.graphql')
-rw-r--r--webui/src/pages/list/ListLabels.graphql9
1 files changed, 9 insertions, 0 deletions
diff --git a/webui/src/pages/list/ListLabels.graphql b/webui/src/pages/list/ListLabels.graphql
new file mode 100644
index 00000000..dcb44b67
--- /dev/null
+++ b/webui/src/pages/list/ListLabels.graphql
@@ -0,0 +1,9 @@
+query ListLabels {
+ repository {
+ validLabels {
+ nodes {
+ name
+ }
+ }
+ }
+}