Hey,
I am writing schema first.
I have the following scenario:
- I have a resolver that resolves an object called "posts" and each post has a comment where I implemented it used ResolveField
- I have a resolver that resolves "person" and now I want person to return "posts" and to use the logic that I have already written, I have the logic of posts resolving in a service so injecting that service is an option and then I will have to do another ResolveField on the "posts" that are returned
is there another way of using what already exists instead of injecting the service ?