From b9d3abee3166b71a6a56302e1c0cac554230b8ea Mon Sep 17 00:00:00 2001 From: BossGrand Date: Mon, 6 Feb 2017 17:14:07 -0800 Subject: [PATCH] fixed a few documentation bugs there was a warning of header underline not being long enough and code type graphql was being used intead of json --- 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 9095ab58..1155f1e8 100644 --- a/docs/types/mutations.rst +++ b/docs/types/mutations.rst @@ -78,7 +78,7 @@ We should receive: } InputFields and InputObjectTypes ----------------------- +---------------------------------- InputFields are used in mutations to allow nested input data for mutations To use an InputField you define an InputObjectType that specifies the structure of your input data @@ -114,7 +114,7 @@ Note that **name** and **age** are part of **person_data** now Using the above mutation your new query would look like this: -.. code:: graphql +.. code:: json mutation myFirstMutation { createPerson(personData: {name:"Peter", age: 24}) {