I am currently utilizing apollo-server and am curious if there is a method to obtain information (the fourth argument of a resolver) as it would be received by a specific child field, but within the parent resolver of that child field.
My scenario is as follows: I have a mutation called edit_x with two fields 'before' and 'after'. I must resolve the 'before' field prior to executing the mutation, so resolution needs to occur in the parent. I rely on a library named joinmonster for resolving my graphql requests that interact with the database, and this library requires the information of a field to complete the resolution. However, what I require is not the information of 'edit_x', but rather the information of 'before'.
Thank you very much