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:
rrueth 2020-04-12 04:19:56 -07:00 committed by GitHub
parent 871c60cf46
commit 37d6eaea46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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**.