Skip to content

Commit 2130005

Browse files
authored
Minor grammatical fix in the schema docs (#1237)
1 parent 64af437 commit 2130005

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/types/schema.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Schema
22
======
33

4-
A GraphQL **Schema** defines the types and relationship between **Fields** in your API.
4+
A GraphQL **Schema** defines the types and relationships between **Fields** in your API.
55

66
A Schema is created by supplying the root :ref:`ObjectType` of each operation, query (mandatory), mutation and subscription.
77

8-
Schema will collect all type definitions related to the root operations and then supplied to the validator and executor.
8+
Schema will collect all type definitions related to the root operations and then supply them to the validator and executor.
99

1010
.. code:: python
1111
@@ -15,11 +15,11 @@ Schema will collect all type definitions related to the root operations and then
1515
subscription=MyRootSubscription
1616
)
1717
18-
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:
18+
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:
1919

2020
* Query fetches data
2121
* Mutation changes data and retrieves the changes
22-
* Subscription sends changes to clients in real time
22+
* Subscription sends changes to clients in real-time
2323

2424
Review the `GraphQL documentation on Schema`_ for a brief overview of fields, schema and operations.
2525

0 commit comments

Comments
 (0)