mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-22 17:46:57 +03:00
Update requirement for Query type in mutation docs (#1213)
This commit is contained in:
parent
a1fc3688aa
commit
a9625dac0e
|
@ -48,11 +48,7 @@ So, we can finish our schema like this:
|
||||||
class MyMutations(graphene.ObjectType):
|
class MyMutations(graphene.ObjectType):
|
||||||
create_person = CreatePerson.Field()
|
create_person = CreatePerson.Field()
|
||||||
|
|
||||||
# We must define a query for our schema
|
schema = graphene.Schema(mutation=MyMutations)
|
||||||
class Query(graphene.ObjectType):
|
|
||||||
person = graphene.Field(Person)
|
|
||||||
|
|
||||||
schema = graphene.Schema(query=Query, mutation=MyMutations)
|
|
||||||
|
|
||||||
Executing the Mutation
|
Executing the Mutation
|
||||||
----------------------
|
----------------------
|
||||||
|
|
|
@ -381,7 +381,7 @@ class Schema:
|
||||||
questions about the types through introspection.
|
questions about the types through introspection.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
query (Type[ObjectType]): Root query *ObjectType*. Describes entry point for fields to *read*
|
query (Optional[Type[ObjectType]]): Root query *ObjectType*. Describes entry point for fields to *read*
|
||||||
data in your Schema.
|
data in your Schema.
|
||||||
mutation (Optional[Type[ObjectType]]): Root mutation *ObjectType*. Describes entry point for
|
mutation (Optional[Type[ObjectType]]): Root mutation *ObjectType*. Describes entry point for
|
||||||
fields to *create, update or delete* data in your API.
|
fields to *create, update or delete* data in your API.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user