How do I write a resolver for making multiple API calls to fulfil a GraphQL query using Apollo-iOS on the client side (in my swift project)?
For Example: If, to construct a Person object from a query having name and age parameters - I have to fetch name
from a service call and age
from another service call and stitch them to form the Person object, then how would the resolver look like and where should I write it?
Any help is appreciated.