UNPKG

@graphql-tools/executor

Version:

Fork of GraphQL.js' execute function

14 lines (13 loc) 621 B
import { MaybePromise } from '@whatwg-node/promise-helpers'; type ResolvedObject<TData> = { [TKey in keyof TData]: TData[TKey] extends Promise<infer TValue> ? TValue : TData[TKey]; }; /** * This function transforms a JS object `Record<string, Promise<T>>` into * a `Promise<Record<string, T>>` * * This is akin to bluebird's `Promise.props`, but implemented only using * `Promise.all` so it will work with any implementation of ES6 promises. */ export declare function promiseForObject<TData>(object: TData, signal?: AbortSignal, signalPromise?: Promise<never>): MaybePromise<ResolvedObject<TData>>; export {};