aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/schema.graphql
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-09-25 17:55:20 +0200
committerMichael Muré <batolettre@gmail.com>2018-09-25 17:55:20 +0200
commit5d7c3a76af85a857a6bb0bff5bac5282c0a9908f (patch)
treedc0d051f09128a96eefba7a6d8cac458bb4e5379 /graphql/schema.graphql
parenta72ea453a919b8f456cc46fbb7a1156d9f649442 (diff)
downloadgit-bug-5d7c3a76af85a857a6bb0bff5bac5282c0a9908f.tar.gz
bug: add the optional field AvatarUrl to Person
Diffstat (limited to 'graphql/schema.graphql')
-rw-r--r--graphql/schema.graphql5
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 {