This commit is contained in:
Kevin Harvey 2020-04-29 07:38:56 -05:00 committed by GitHub
parent 12ec8dc007
commit 396b278aff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,8 +18,8 @@ Schema will collect all type definitions related to the root operations and then
A Root Query is just a special :ref:`ObjectType` that :ref:`defines the fields <Scalars>` that are the entrypoint for your API. Root Mutation and Root Subscription are similar to Root Query, but for different operation types: A Root Query is just a special :ref:`ObjectType` that :ref:`defines the fields <Scalars>` that are the entrypoint for your API. Root Mutation and Root Subscription are similar to Root Query, but for different operation types:
* Query fetches data * Query fetches data
* Mutation to changes data and retrieve the changes * Mutation changes data and retrieves the changes
* Subscription to sends changes to clients in real time * Subscription sends changes to clients in real time
Review the `GraphQL documentation on Schema`_ for a brief overview of fields, schema and operations. Review the `GraphQL documentation on Schema`_ for a brief overview of fields, schema and operations.
@ -56,7 +56,7 @@ In this case, we need to use the ``types`` argument when creating the Schema.
.. _SchemaAutoCamelCase: .. _SchemaAutoCamelCase:
Auto CamelCase field names Auto camelCase field names
-------------------------- --------------------------
By default all field and argument names (that are not By default all field and argument names (that are not