From 8287a7f76530ee77b1a07381dbc93c9dbf384a9f Mon Sep 17 00:00:00 2001 From: Jon Stevens Date: Mon, 16 Sep 2019 12:52:53 +0700 Subject: [PATCH] [docs] small typo fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e7f8523..4affdcb 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,7 @@ const personType = new GraphQLObjectType({ fields: () => ({ id: { type: new GraphQLNonNull(GraphQLInt), - description: 'First Name', + description: 'Id', }, firstName: { type: new GraphQLNonNull(GraphQLString), @@ -337,4 +337,4 @@ expressApp.get('/graphql', (req, res, next) => { ## setBuilderOptions Allows you to customize **Objection** query builder behavior. For instance, you can pass `{ skipUndefined: true }` as an options argument. So, each time the builder is called, it will be called with **skipUndefined** enabled. -This can be useful when you use [graphql-tools](https://github.com/apollographql/graphql-tools) schema stitching. \ No newline at end of file +This can be useful when you use [graphql-tools](https://github.com/apollographql/graphql-tools) schema stitching.