diff options
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 { |