UNPKG

nestjs-decorated-dataloaders

Version:

A module that helps you to create graphql dataloaders with decorators in Nest.js

6 lines (5 loc) 219 B
/** * Decorator used to define a DataloaderHandler method in a class. * used to load data from some datasource. */ export declare function DataloaderHandler(key?: string): (target: any, propertyKey: string) => void;