graphql-codegen-core
Advanced tools
Comparing version 0.6.0-alpha.3744e90e to 0.6.0-alpha.3e7644c0
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'; | ||
export { Argument, Field, Type, Scalar, Enum, EnumValue, Union, Interface, SchemaTemplateContext, Document, Variable, Operation, Fragment, SelectionSetItem, SelectionSetFieldNode, SelectionSetFragmentSpread, SelectionSetInlineFragment, isFieldNode, isFragmentSpreadNode, isInlineFragmentNode } from './types'; | ||
export { debugLog } from './debugging'; |
@@ -5,5 +5,13 @@ "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"); | ||
exports.validateIntrospection = introspection_to_schema_1.validateIntrospection; | ||
exports.introspectionToGraphQLSchema = introspection_to_schema_1.introspectionToGraphQLSchema; | ||
var types_1 = require("./types"); | ||
exports.isFieldNode = types_1.isFieldNode; | ||
exports.isFragmentSpreadNode = types_1.isFragmentSpreadNode; | ||
exports.isInlineFragmentNode = types_1.isInlineFragmentNode; | ||
var debugging_1 = require("./debugging"); | ||
exports.debugLog = debugging_1.debugLog; | ||
//# sourceMappingURL=index.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var graphql_1 = require("graphql"); | ||
var resolve_type_1 = require("./resolve-type"); | ||
var resolve_type_indicators_1 = require("./resolve-type-indicators"); | ||
var debugging_1 = require("../debugging"); | ||
function resolveArguments(args) { | ||
return args.map(function (arg) { | ||
var type = resolve_type_1.resolveType(arg.type); | ||
var namedType = graphql_1.getNamedType(arg.type); | ||
var indicators = resolve_type_indicators_1.resolveTypeIndicators(namedType); | ||
debugging_1.debugLog("[resolveArguments] resolving argument " + arg.name + " of type " + type.name + "..."); | ||
return { | ||
@@ -13,2 +19,8 @@ name: arg.name, | ||
isArray: type.isArray, | ||
isEnum: indicators.isEnum, | ||
isScalar: indicators.isScalar, | ||
isInterface: indicators.isInterface, | ||
isUnion: indicators.isUnion, | ||
isInputType: indicators.isInputType, | ||
isType: indicators.isType, | ||
}; | ||
@@ -15,0 +27,0 @@ }); |
@@ -1,2 +0,2 @@ | ||
import { GraphQLInputType, GraphQLOutputType } from 'graphql'; | ||
import { GraphQLInputType, GraphQLOutputType, GraphQLType } from 'graphql'; | ||
export interface ResolvedType { | ||
@@ -9,2 +9,2 @@ name: string; | ||
export declare function isArray(type: GraphQLOutputType | GraphQLInputType): boolean; | ||
export declare function resolveType(type: GraphQLOutputType | GraphQLInputType): ResolvedType; | ||
export declare function resolveType(type: GraphQLType): ResolvedType; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var graphql_1 = require("graphql"); | ||
var debugging_1 = require("../debugging"); | ||
function isRequired(type) { | ||
@@ -13,4 +14,6 @@ return (String(type)).indexOf('!') > -1; | ||
function resolveType(type) { | ||
var name = graphql_1.getNamedType(type).name; | ||
debugging_1.debugLog("[resolveType] resolving type " + name); | ||
return { | ||
name: graphql_1.getNamedType(type).name, | ||
name: name, | ||
isRequired: isRequired(type), | ||
@@ -17,0 +20,0 @@ isArray: isArray(type), |
@@ -10,2 +10,3 @@ "use strict"; | ||
var transform_scalar_1 = require("./transform-scalar"); | ||
var debugging_1 = require("../debugging"); | ||
var GRAPHQL_PRIMITIVES = ['String', 'Int', 'Boolean', 'ID', 'Float']; | ||
@@ -19,2 +20,3 @@ var clearTypes = function (typesMap) { return Object.keys(typesMap) | ||
function schemaToTemplateContext(schema) { | ||
debugging_1.debugLog('[schemaToTemplateContext] started...'); | ||
var result = { | ||
@@ -37,2 +39,3 @@ types: [], | ||
var typesArray = object_map_to_array_1.objectMapToArray(typesMap); | ||
debugging_1.debugLog("[schemaToTemplateContext] Got total of " + typesArray.length + " types in the GraphQL schema"); | ||
typesArray.map(function (graphQlType) { | ||
@@ -68,2 +71,3 @@ var actualTypeDef = graphQlType.value; | ||
result.hasInterfaces = result.interfaces.length > 0; | ||
debugging_1.debugLog("[schemaToTemplateContext] done, results is: ", result); | ||
return result; | ||
@@ -70,0 +74,0 @@ } |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var debugging_1 = require("../debugging"); | ||
function transformGraphQLEnum(graphqlEnum) { | ||
debugging_1.debugLog("[transformGraphQLEnum] transformed enum " + graphqlEnum.name); | ||
var enumValues = graphqlEnum.getValues().map(function (enumItem) { | ||
@@ -5,0 +7,0 @@ return { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var graphql_1 = require("graphql"); | ||
var object_map_to_array_1 = require("../utils/object-map-to-array"); | ||
var resolve_type_1 = require("./resolve-type"); | ||
var resolve_arguments_1 = require("./resolve-arguments"); | ||
var resolve_type_indicators_1 = require("./resolve-type-indicators"); | ||
var debugging_1 = require("../debugging"); | ||
function resolveFields(rawFields) { | ||
@@ -11,2 +14,5 @@ var fieldsArray = object_map_to_array_1.objectMapToArray(rawFields); | ||
var resolvedArguments = resolve_arguments_1.resolveArguments(item.value.args || []); | ||
var namedType = graphql_1.getNamedType(item.value.type); | ||
var indicators = resolve_type_indicators_1.resolveTypeIndicators(namedType); | ||
debugging_1.debugLog("[resolveFields] transformed field " + item.value.name + " of type " + type + ", resolved type is: ", type); | ||
return { | ||
@@ -20,2 +26,8 @@ name: item.value.name, | ||
hasArguments: resolvedArguments.length > 0, | ||
isEnum: indicators.isEnum, | ||
isScalar: indicators.isScalar, | ||
isInterface: indicators.isInterface, | ||
isUnion: indicators.isUnion, | ||
isInputType: indicators.isInputType, | ||
isType: indicators.isType, | ||
}; | ||
@@ -22,0 +34,0 @@ }); |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var transform_fields_1 = require("./transform-fields"); | ||
var debugging_1 = require("../debugging"); | ||
function transformInterface(gqlInterface) { | ||
debugging_1.debugLog("[transformInterface] transformed interface " + gqlInterface.name); | ||
var resolvedFields = transform_fields_1.resolveFields(gqlInterface.getFields()); | ||
@@ -6,0 +8,0 @@ return { |
@@ -5,3 +5,5 @@ "use strict"; | ||
var transform_fields_1 = require("./transform-fields"); | ||
var debugging_1 = require("../debugging"); | ||
function transformGraphQLObject(object) { | ||
debugging_1.debugLog("[transformGraphQLObject] transforming type " + object.name); | ||
var resolvedFields = transform_fields_1.resolveFields(object.getFields()); | ||
@@ -8,0 +10,0 @@ var resolvedInterfaces = object instanceof graphql_1.GraphQLObjectType ? object.getInterfaces().map(function (inf) { return inf.name; }) : []; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var debugging_1 = require("../debugging"); | ||
function transformScalar(scalar) { | ||
debugging_1.debugLog("[transformInterface] transformed custom scalar " + scalar.name); | ||
return { | ||
@@ -5,0 +7,0 @@ name: scalar.name, |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var debugging_1 = require("../debugging"); | ||
function transformUnion(union) { | ||
debugging_1.debugLog("[transformUnion] transformed union " + union.name); | ||
return { | ||
@@ -5,0 +7,0 @@ name: union.name, |
@@ -7,2 +7,8 @@ export interface Argument { | ||
isArray: boolean; | ||
isType: boolean; | ||
isScalar: boolean; | ||
isInterface: boolean; | ||
isUnion: boolean; | ||
isInputType: boolean; | ||
isEnum: boolean; | ||
} | ||
@@ -17,2 +23,8 @@ export interface Field { | ||
hasArguments: boolean; | ||
isType: boolean; | ||
isScalar: boolean; | ||
isInterface: boolean; | ||
isUnion: boolean; | ||
isInputType: boolean; | ||
isEnum: boolean; | ||
} | ||
@@ -67,1 +79,60 @@ export interface Type { | ||
} | ||
export interface SelectionSetItem { | ||
isFragmentSpread: boolean; | ||
isInlineFragment: boolean; | ||
isField: boolean; | ||
isLeaf: boolean; | ||
} | ||
export interface SelectionSetInlineFragment extends SelectionSetItem { | ||
selectionSet: SelectionSetItem[]; | ||
onType: string; | ||
fields: SelectionSetFieldNode[]; | ||
fragmentsSpread: SelectionSetFragmentSpread[]; | ||
inlineFragments: SelectionSetInlineFragment[]; | ||
hasFragmentsSpread: boolean; | ||
hasInlineFragments: boolean; | ||
hasFields: boolean; | ||
} | ||
export interface SelectionSetFragmentSpread extends SelectionSetItem { | ||
fragmentName: string; | ||
} | ||
export interface SelectionSetFieldNode extends SelectionSetItem { | ||
selectionSet: SelectionSetItem[]; | ||
name: string; | ||
type: string; | ||
isRequired: boolean; | ||
isArray: boolean; | ||
fields: SelectionSetFieldNode[]; | ||
fragmentsSpread: SelectionSetFragmentSpread[]; | ||
inlineFragments: SelectionSetInlineFragment[]; | ||
hasFragmentsSpread: boolean; | ||
hasInlineFragments: boolean; | ||
hasFields: boolean; | ||
} | ||
export declare function isFieldNode(node: SelectionSetItem): node is SelectionSetFieldNode; | ||
export declare function isFragmentSpreadNode(node: SelectionSetItem): node is SelectionSetFragmentSpread; | ||
export declare function isInlineFragmentNode(node: SelectionSetItem): node is SelectionSetInlineFragment; | ||
export interface Fragment { | ||
name: string; | ||
selectionSet: SelectionSetItem[]; | ||
onType: string; | ||
} | ||
export interface Operation { | ||
name: string; | ||
selectionSet: SelectionSetItem[]; | ||
operationType: string; | ||
variables: Variable[]; | ||
hasVariables: boolean; | ||
} | ||
export interface Variable { | ||
name: string; | ||
type: string; | ||
isRequired: boolean; | ||
isArray: boolean; | ||
} | ||
export interface Document { | ||
fragments: Fragment[]; | ||
operations: Operation[]; | ||
hasFragments: boolean; | ||
hasOperations: boolean; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
function isFieldNode(node) { | ||
return node['name'] !== undefined && node['selectionSet'] !== undefined && node['type'] !== undefined; | ||
} | ||
exports.isFieldNode = isFieldNode; | ||
function isFragmentSpreadNode(node) { | ||
return node['fragmentName'] !== undefined; | ||
} | ||
exports.isFragmentSpreadNode = isFragmentSpreadNode; | ||
function isInlineFragmentNode(node) { | ||
return node['selectionSet'] !== undefined && node['onType'] !== undefined; | ||
} | ||
exports.isInlineFragmentNode = isInlineFragmentNode; | ||
//# sourceMappingURL=types.js.map |
{ | ||
"name": "graphql-codegen-core", | ||
"version": "0.6.0-alpha.3744e90e", | ||
"version": "0.6.0-alpha.3e7644c0", | ||
"description": "GraphQL types and code generator based on schema", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"build-tests": "tsc -p tsconfig.test.json", | ||
"watch": "tsc --watch", | ||
"clean": "rimraf ./dist", | ||
@@ -16,6 +14,2 @@ "lint": "tslint src/**/*.ts", | ||
"debug": "cd dist && node --inspect --debug-brk gql-gen.js", | ||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", | ||
"create-git-tag": "git tag $(cat package.json | json version)", | ||
"dev": "cd dist/cli && nodemon --ext ts,js,d.ts,template,graphql,json,handlebars gql-gen.js --dev --file ../../dev-test/githunt/schema.json --template ts --out ../../dev-test/githunt/typings.d.ts ../../dev-test/githunt/**/*.graphql", | ||
"prepare--": "npm run build && npm run test && npm run create-git-tag && git push && git push --tags", | ||
"test": "jest --no-cache --verbose --runInBand" | ||
@@ -89,3 +83,5 @@ }, | ||
"@types/node": "7", | ||
"graphql-tag": "^2.4.2", | ||
"jest": "^20.0.4", | ||
"rimraf": "^2.6.1", | ||
"tslint": "^5.4.3", | ||
@@ -92,0 +88,0 @@ "typescript": "^2.4.1" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
239814
72
784
7