From 7cb7994cdae848053487d00c1730d1e865fb8623 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 7 Oct 2018 18:27:23 +0200 Subject: github: also pull users email --- graphql/schema.graphql | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'graphql/schema.graphql') diff --git a/graphql/schema.graphql b/graphql/schema.graphql index c187ce49..fefe895b 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -16,11 +16,17 @@ type PageInfo { """Represents an person in a git object.""" type Person { - """The email of the person.""" + """The name of the person, if known.""" + name: String + + """The email of the person, if known.""" email: String - """The name of the person.""" - name: 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 -- cgit