UNPKG

graphql-request

Version:

Minimal GraphQL client supporting Node and browsers for scripts or simple apps.

8 lines 295 B
import type { ExecutionResult, GraphQLSchema } from 'graphql'; import type { BaseInput } from './types.js'; interface Input extends BaseInput { schema: GraphQLSchema; } export declare const execute: (input: Input) => Promise<ExecutionResult>; export {}; //# sourceMappingURL=execute.d.ts.map