Initial Save
This commit is contained in:
10
node_modules/apollo-graphql/lib/schema/buildSchemaFromSDL.d.ts
generated
vendored
Normal file
10
node_modules/apollo-graphql/lib/schema/buildSchemaFromSDL.d.ts
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { DocumentNode, GraphQLSchema } from "graphql";
|
||||
import { GraphQLResolverMap } from "./resolverMap";
|
||||
export interface GraphQLSchemaModule {
|
||||
typeDefs: DocumentNode;
|
||||
resolvers?: GraphQLResolverMap<any>;
|
||||
}
|
||||
export declare function modulesFromSDL(modulesOrSDL: (GraphQLSchemaModule | DocumentNode)[] | DocumentNode): GraphQLSchemaModule[];
|
||||
export declare function buildSchemaFromSDL(modulesOrSDL: (GraphQLSchemaModule | DocumentNode)[] | DocumentNode, schemaToExtend?: GraphQLSchema): GraphQLSchema;
|
||||
export declare function addResolversToSchema(schema: GraphQLSchema, resolvers: GraphQLResolverMap<any>): void;
|
||||
//# sourceMappingURL=buildSchemaFromSDL.d.ts.map
|
||||
Reference in New Issue
Block a user