const resolvers = { ... Movie: { villain: (parent, _args, { dataSources }) => { return dataSources.restAPI.getVillain(parent.villain_id); }, ... }, }; module.exports = resolvers;