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.

10 lines (9 loc) 230 B
export const useDataLoader = (name, builderFn) => { return { onContextBuilding({ context, extendContext }) { extendContext({ [name]: builderFn(context), }); }, }; };