Open
Description
Feature requests
Based on the documentation at https://graphql.org/learn/execution/#root-fields-resolvers, I expected that resolvers would always receive the parent/previous object as the first argument. However when I tested the library, the arguments received by the resolvers are actually (args, context, info)
.
This doesn't match the documentation, and is a serious limitation when one needs the parent object (for example, some id
) in order to resolve children fields.
Is there a workaround or is this a known limitation?