You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/types/objecttypes.rst
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,7 @@ Resolvers are lazily executed, so if a field is not included in a query, its res
52
52
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``.
53
53
54
54
Each resolver method takes the parameters:
55
+
55
56
* :ref:`ResolverParamParent` for the value object use to resolve most fields
56
57
* :ref:`ResolverParamInfo` for query and schema meta information and per-request context
57
58
* :ref:`ResolverParamGraphQLArguments` as defined on the **Field**.
0 commit comments