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