GraphQL - Resolvers
Given the resolver function below, what will be the output if
args = { id: 10 } and parent = { name: 'Alice' }?function resolver(parent, args, context, info) {
return `${parent.name} has id ${args.id}`;
}