import { type DataLoaderOptions } from "https://deno.land/x/pothos@release-1721854018/packages/plugin-dataloader/index.ts";
Type Parameters
Types extends SchemaTypes
optional
Shape = ShapeFromLoadResult<LoadResult>definition: { load: (keys: Key[], context: Types["Context"]) => Promise<readonly LoadResult[]>; loaderOptions?: DataLoader.Options<Key, Shape, CacheKey>; } & ({ toKey: (value: Shape) => Key; cacheResolved?: boolean; sort?: boolean; } | { toKey?: undefined; cacheResolved?: (value: Shape) => Key; sort?: (value: Shape) => Key; })