mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-25 19:13:57 +03:00
Fix types in Schema docstring (#1100)
This commit is contained in:
parent
5d97c848e0
commit
88f79b2850
|
@ -374,13 +374,13 @@ class Schema:
|
||||||
questions about the types through introspection.
|
questions about the types through introspection.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
query (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.
|
data in your Schema.
|
||||||
mutation (ObjectType, optional): 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.
|
||||||
subscription (ObjectType, optional): Root subscription *ObjectType*. Describes entry point
|
subscription (Optional[Type[ObjectType]]): Root subscription *ObjectType*. Describes entry point
|
||||||
for fields to receive continuous updates.
|
for fields to receive continuous updates.
|
||||||
types (List[ObjectType], optional): List of any types to include in schema that
|
types (Optional[List[Type[ObjectType]]]): List of any types to include in schema that
|
||||||
may not be introspected through root types.
|
may not be introspected through root types.
|
||||||
directives (List[GraphQLDirective], optional): List of custom directives to include in the
|
directives (List[GraphQLDirective], optional): List of custom directives to include in the
|
||||||
GraphQL schema. Defaults to only include directives defined by GraphQL spec (@include
|
GraphQL schema. Defaults to only include directives defined by GraphQL spec (@include
|
||||||
|
|
Loading…
Reference in New Issue
Block a user