File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ This example defines a Mutation:
24
24
ok = True
25
25
return CreatePerson(person = person, ok = ok)
26
26
27
- **person ** and **ok ** are the output fields of the Mutation when is
27
+ **person ** and **ok ** are the output fields of the Mutation when it is
28
28
resolved.
29
29
30
30
**Input ** attributes are the arguments that the Mutation
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ A resolver is a method that resolves certain fields within a
50
50
``ObjectType ``. If not specififed otherwise, the resolver of a
51
51
field is the ``resolve_{field_name} `` method on the ``ObjectType ``.
52
52
53
- By default resolvers take the arguments ``args ``, `` context `` and ``info ``.
53
+ By default resolvers take the arguments ``info `` and ``*args ``.
54
54
55
55
NOTE: The resolvers on a ``ObjectType `` are always treated as ``staticmethod ``\ s,
56
56
so the first argument to the resolver method ``self `` (or ``root ``) need
You can’t perform that action at this time.
0 commit comments