aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/list/ListIdentities.graphql
diff options
context:
space:
mode:
authorAien Saidi <aien.saidi@gmail.com>2021-03-18 18:00:16 +0100
committerSascha <GlancingMind@outlook.com>2021-04-07 13:07:58 +0200
commit54c5b66271f4f3d95881a186c8124e7e5dcdb6d4 (patch)
treeb7a4295faca9eb02216475fcc22fd6680c5f51f7 /webui/src/pages/list/ListIdentities.graphql
parentc7a441bad6a7ca247d955b63d2ba604435fdaab6 (diff)
downloadgit-bug-54c5b66271f4f3d95881a186c8124e7e5dcdb6d4.tar.gz
feat: use author to filter the list
Diffstat (limited to 'webui/src/pages/list/ListIdentities.graphql')
-rw-r--r--webui/src/pages/list/ListIdentities.graphql13
1 files changed, 13 insertions, 0 deletions
diff --git a/webui/src/pages/list/ListIdentities.graphql b/webui/src/pages/list/ListIdentities.graphql
new file mode 100644
index 00000000..73073ae8
--- /dev/null
+++ b/webui/src/pages/list/ListIdentities.graphql
@@ -0,0 +1,13 @@
+query ListIdentities {
+ repository {
+ allIdentities {
+ nodes {
+ id
+ humanId
+ name
+ email
+ displayName
+ }
+ }
+ }
+}