GraphQL - Resolvers
How would you modify this resolver to access a database connection from context and use an argument to fetch a user by ID?
function resolver(parent, args, context) {
return context.db.getUser(args.id);
}