aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/schema/identity.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'graphql/schema/identity.graphql')
-rw-r--r--graphql/schema/identity.graphql14
1 files changed, 14 insertions, 0 deletions
diff --git a/graphql/schema/identity.graphql b/graphql/schema/identity.graphql
index 18666f76..6872ecb9 100644
--- a/graphql/schema/identity.graphql
+++ b/graphql/schema/identity.graphql
@@ -2,6 +2,8 @@
type Identity {
"""The identifier for this identity"""
id: String!
+ """The human version (truncated) identifier for this identity"""
+ humanId: String!
"""The name of the person, if known."""
name: String
"""The email of the person, if known."""
@@ -16,3 +18,15 @@ type Identity {
If that's the case, only signed commit with a valid key for this identity can be added."""
isProtected: Boolean!
}
+
+type IdentityConnection {
+ edges: [IdentityEdge!]!
+ nodes: [Identity!]!
+ pageInfo: PageInfo!
+ totalCount: Int!
+}
+
+type IdentityEdge {
+ cursor: String!
+ node: Identity!
+} \ No newline at end of file