diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-25 17:55:20 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-25 17:55:20 +0200 |
commit | 5d7c3a76af85a857a6bb0bff5bac5282c0a9908f (patch) | |
tree | dc0d051f09128a96eefba7a6d8cac458bb4e5379 /graphql/schema.graphql | |
parent | a72ea453a919b8f456cc46fbb7a1156d9f649442 (diff) | |
download | git-bug-5d7c3a76af85a857a6bb0bff5bac5282c0a9908f.tar.gz |
bug: add the optional field AvatarUrl to Person
Diffstat (limited to 'graphql/schema.graphql')
-rw-r--r-- | graphql/schema.graphql | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/graphql/schema.graphql b/graphql/schema.graphql index 733b9f1a..c083ac4f 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -20,7 +20,10 @@ type Person { email: String """The name of the person.""" - name: String + name: String! + + """An url to an avatar""" + avatarUrl: String } type CommentConnection { |