From 1aed47a469da954a2c38dabb696cc864c98ae126 Mon Sep 17 00:00:00 2001 From: rrueth Date: Thu, 9 Apr 2020 15:43:24 -0700 Subject: [PATCH] Fix resolve method parameters bullet list The current documentation shows all of the resolve parameters on a single line as opposed to the bullet list that was intended. --- docs/types/objecttypes.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/types/objecttypes.rst b/docs/types/objecttypes.rst index e37c3030..29d3954c 100644 --- a/docs/types/objecttypes.rst +++ b/docs/types/objecttypes.rst @@ -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**.