aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/Identity/UserIdentity.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/components/Identity/UserIdentity.graphql')
-rw-r--r--webui/src/components/Identity/UserIdentity.graphql9
1 files changed, 9 insertions, 0 deletions
diff --git a/webui/src/components/Identity/UserIdentity.graphql b/webui/src/components/Identity/UserIdentity.graphql
new file mode 100644
index 00000000..9cf10248
--- /dev/null
+++ b/webui/src/components/Identity/UserIdentity.graphql
@@ -0,0 +1,9 @@
+#import "./IdentityFragment.graphql"
+
+query GetUserById($userId: String!) {
+ repository {
+ identity(prefix: $userId) {
+ ...Identity
+ }
+ }
+}