In Graphql Federation using Nestjs, Mercurius and Dataloader functionality I am unable to call __resolverReference function present in Dataloader. Dataloader service is instantiating correctly but other functions are called except __resolveReference one. As instructed I have added following resolver for reference field like below
@ResolveReference() public async resolveReference(reference: IReference): Promise<User> { return; }