graphql-codegen-core
Advanced tools
Comparing version 0.6.0-alpha.6cb4c2a8 to 0.6.0-alpha.7854fe32
export { schemaToTemplateContext } from './schema/schema-to-template-context'; | ||
export { transformDocument } from './operations/transform-document'; | ||
export { validateIntrospection, introspectionToGraphQLSchema } from './utils/introspection-to-schema'; | ||
export { Argument, Field, Type, Scalar, Enum, EnumValue, Union, Interface, SchemaTemplateContext } from './types'; |
@@ -5,2 +5,4 @@ "use strict"; | ||
exports.schemaToTemplateContext = schema_to_template_context_1.schemaToTemplateContext; | ||
var transform_document_1 = require("./operations/transform-document"); | ||
exports.transformDocument = transform_document_1.transformDocument; | ||
var introspection_to_schema_1 = require("./utils/introspection-to-schema"); | ||
@@ -7,0 +9,0 @@ exports.validateIntrospection = introspection_to_schema_1.validateIntrospection; |
@@ -65,11 +65,12 @@ export interface Argument { | ||
} | ||
export interface SelectionSetInlineFragment { | ||
export interface SelectionSetItem { | ||
} | ||
export interface SelectionSetInlineFragment extends SelectionSetItem { | ||
selectionSet: SelectionSetItem[]; | ||
onType: string; | ||
} | ||
export interface SelectionSetFragmentSpread { | ||
export interface SelectionSetFragmentSpread extends SelectionSetItem { | ||
fragmentName: string; | ||
} | ||
export declare type SelectionSetItem = SelectionSetFieldNode | SelectionSetInlineFragment | SelectionSetFragmentSpread; | ||
export interface SelectionSetFieldNode { | ||
export interface SelectionSetFieldNode extends SelectionSetItem { | ||
name: string; | ||
@@ -76,0 +77,0 @@ selectionSet: SelectionSetItem[]; |
{ | ||
"name": "graphql-codegen-core", | ||
"version": "0.6.0-alpha.6cb4c2a8", | ||
"version": "0.6.0-alpha.7854fe32", | ||
"description": "GraphQL types and code generator based on schema", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
227237
66
619