From 85cad0efc38997f1a0ea8a20063ad62e2cf4185d Mon Sep 17 00:00:00 2001 From: BossGrand Date: Mon, 14 Nov 2016 17:50:41 -0800 Subject: [PATCH] fixed typo in documentation --- docs/types/mutations.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/types/mutations.rst b/docs/types/mutations.rst index 8de07f32..135eeb16 100644 --- a/docs/types/mutations.rst +++ b/docs/types/mutations.rst @@ -119,9 +119,9 @@ Using the above mutation your new query would look like this: mutation myFirstMutation { createPerson(personData: {name:"Peter", age: 24}) { person { - name + name, + age } - ok } }