blob: 7c5ef12608f89de14d7927af380a987f22a3078d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
"""Represents an identity"""
type Identity {
"""The name of the person, if known."""
name: String
"""The email of the person, if known."""
email: String
"""The login of the person, if known."""
login: String
"""A string containing the either the name of the person, its login or both"""
displayName: String!
"""An url to an avatar"""
avatarUrl: String
}
|