blob: 6490d5387eda344482f4edebdb545ddd990135bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
"""Represents an identity"""
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."""
email: String
"""A non-empty string to display, representing the identity, based on the non-empty values."""
displayName: String!
"""An url to an avatar"""
avatarUrl: String
"""isProtected is true if the chain of git commits started to be signed.
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!
}
|