Skip to content

Commit

Permalink
Fix resolve method parameters bullet list (#1178)
Browse files Browse the repository at this point in the history
The current documentation shows all of the resolve parameters on a single line as opposed to the bullet list that was intended.
  • Loading branch information
rrueth committed Apr 12, 2020
1 parent 871c60c commit 37d6eae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/types/objecttypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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**.
Expand Down

0 comments on commit 37d6eae

Please sign in to comment.