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.

4 lines (3 loc) 350 B
import DataLoader from 'dataloader'; import { DefaultContext, Plugin } from '@envelop/core'; export declare const useDataLoader: <TName extends string, Key, Value, CacheKey = Key, Context = DefaultContext>(name: TName, builderFn: (context: Context) => DataLoader<Key, Value, CacheKey>) => Plugin<{ [K in TName]: DataLoader<Key, Value, CacheKey>; }>;