From 54c5b66271f4f3d95881a186c8124e7e5dcdb6d4 Mon Sep 17 00:00:00 2001 From: Aien Saidi Date: Thu, 18 Mar 2021 18:00:16 +0100 Subject: feat: use author to filter the list --- webui/src/pages/list/ListIdentities.graphql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 webui/src/pages/list/ListIdentities.graphql (limited to 'webui/src/pages/list/ListIdentities.graphql') 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 + } + } + } +} -- cgit