Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

create-root-schema

Package Overview
Dependencies
Maintainers
10
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-root-schema - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

14

dist/index.d.ts

@@ -6,15 +6,11 @@ import { GraphQLSchema } from 'graphql';

};
declare type TypeDef = string;
export interface SchemaPart {
resolvers?: IResolvers;
schemaDirectives?: SchemaDirective;
typeDefs?: TypeDef;
}
declare type TypeDef = string | string[];
export interface SchemaDefinition {
resolvers?: IResolvers;
schemaDirectives?: SchemaDirective;
typeDefs: TypeDef[];
resolvers: IResolvers;
schemaDirectives: SchemaDirective;
typeDefs: TypeDef;
}
export declare type SchemaPart = Partial<SchemaDefinition>;
export declare function combineSchemaDefinitions(schemaParts: SchemaPart[]): SchemaDefinition;
export declare function makeExecutableSchema(schemaParts: SchemaPart[], options?: object): GraphQLSchema;
export {};
{
"name": "create-root-schema",
"version": "2.0.0",
"version": "2.0.1",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "repository": "https://github.com/gsandf/create-root-schema",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc