Revert "Update requirement for Query type in mutation docs (#1213)"

This reverts commit a9625dac0e.
This commit is contained in:
Jonathan Kim 2020-06-25 11:42:59 +01:00 committed by GitHub
parent a9625dac0e
commit 198a4c7b5e
2 changed files with 6 additions and 2 deletions

View File

@ -48,7 +48,11 @@ So, we can finish our schema like this:
class MyMutations(graphene.ObjectType):
create_person = CreatePerson.Field()
schema = graphene.Schema(mutation=MyMutations)
# We must define a query for our schema
class Query(graphene.ObjectType):
person = graphene.Field(Person)
schema = graphene.Schema(query=Query, mutation=MyMutations)
Executing the Mutation
----------------------

View File

@ -381,7 +381,7 @@ class Schema:
questions about the types through introspection.
Args:
query (Optional[Type[ObjectType]]): Root query *ObjectType*. Describes entry point for fields to *read*
query (Type[ObjectType]): Root query *ObjectType*. Describes entry point for fields to *read*
data in your Schema.
mutation (Optional[Type[ObjectType]]): Root mutation *ObjectType*. Describes entry point for
fields to *create, update or delete* data in your API.