Fix documentation typing in schema.py for v2 (#1335)

This commit is contained in:
Kyrylo Khatsko 2022-09-02 14:38:10 +03:00 committed by GitHub
parent 7d2af3104e
commit fc582baf40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ class Schema(GraphQLSchema):
about the types through introspection.
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.
mutation (ObjectType, optional): Root mutation *ObjectType*. Describes entry point for
fields to *create, update or delete* data in your API.