mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 04:07:16 +03:00
Fix resolve method parameters bullet list (#1178)
The current documentation shows all of the resolve parameters on a single line as opposed to the bullet list that was intended.
This commit is contained in:
parent
871c60cf46
commit
37d6eaea46
|
@ -52,6 +52,7 @@ Resolvers are lazily executed, so if a field is not included in a query, its res
|
|||
Each field on an *ObjectType* in Graphene should have a corresponding resolver method to fetch data. This resolver method should match the field name. For example, in the ``Person`` type above, the ``full_name`` field is resolved by the method ``resolve_full_name``.
|
||||
|
||||
Each resolver method takes the parameters:
|
||||
|
||||
* :ref:`ResolverParamParent` for the value object use to resolve most fields
|
||||
* :ref:`ResolverParamInfo` for query and schema meta information and per-request context
|
||||
* :ref:`ResolverParamGraphQLArguments` as defined on the **Field**.
|
||||
|
|
Loading…
Reference in New Issue
Block a user