We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
type
Field
1 parent baaef0d commit 5fb7b54Copy full SHA for 5fb7b54
graphene/types/field.py
@@ -43,7 +43,8 @@ class Person(ObjectType):
43
args:
44
type (class for a graphene.UnmountedType): Must be a class (not an instance) of an
45
unmounted graphene type (ex. scalar or object) which is used for the type of this
46
- field in the GraphQL schema.
+ field in the GraphQL schema. You can provide a dotted module import path (string)
47
+ to the class instead of the class itself (e.g. to avoid circular import issues).
48
args (optional, Dict[str, graphene.Argument]): Arguments that can be input to the field.
49
Prefer to use ``**extra_args``, unless you use an argument name that clashes with one
50
of the Field arguments presented here (see :ref:`example<ResolverParamGraphQLArguments>`).
0 commit comments