From c00d34771d6a67976ea851f56a9beeede10f126e Mon Sep 17 00:00:00 2001 From: Dabit Date: Sun, 2 Dec 2018 06:39:06 -0800 Subject: [PATCH] updated readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 298784f..61b9896 100644 --- a/README.md +++ b/README.md @@ -812,14 +812,14 @@ amplify env list | *apiupdate | ``` -Now we can update the GraphQL Schema in `amplify/backend/api/GraphQLPets/schema.graphql` to the following: +Now we can update the GraphQL Schema in `amplify/backend/api/GraphQLPets/schema.graphql` to the following (adding the owner field): ```graphql type Pet @model { id: ID! name: String! description: String - owner: String #new + owner: String } ```