identity.graphql

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