UNPKG

@envelop/dataloader

Version:

This plugin helps you to create a new [DataLoader](https://github.com/graphql/dataloader) instance every time your context is being built. The created instance is injected into the `context` with the name you wish to use.

14 lines (13 loc) 371 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.useDataLoader = void 0; const useDataLoader = (name, builderFn) => { return { onContextBuilding({ context, extendContext }) { extendContext({ [name]: builderFn(context), }); }, }; }; exports.useDataLoader = useDataLoader;