Closed
Description
get_middleware_resolvers
is implemented as a generator:
The generator object is then assigned to self._middleware_resolvers
:
As the generator is not consumed and unrolled into a list at this point, it is exhausted during the reduce()
call of the first field construction:
As the generator is now exhausted, all other calls to reduce()
will immediately receive StopIteration
so no other field is wrapped.
Metadata
Metadata
Assignees
Labels
No labels