diff options
author | Aien Saidi <aien.saidi@gmail.com> | 2021-03-18 18:00:16 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-04-07 13:07:58 +0200 |
commit | 54c5b66271f4f3d95881a186c8124e7e5dcdb6d4 (patch) | |
tree | b7a4295faca9eb02216475fcc22fd6680c5f51f7 /webui/src/pages/list/ListIdentities.graphql | |
parent | c7a441bad6a7ca247d955b63d2ba604435fdaab6 (diff) | |
download | git-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.graphql | 13 |
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 + } + } + } +} |