@cran/gql.core
Version:
Cran/GraphQL Core Utilities
6 lines (5 loc) • 308 B
TypeScript
import type { IExecutableSchemaDefinition } from "@graphql-tools/schema";
import type { Plugin } from "../plugins/Plugin";
export declare function composeExecutableSchema<Context>(definition: IExecutableSchemaDefinition<Context> & {
plugins?: Array<Plugin<Context>>;
}): import("graphql").GraphQLSchema;