graphql-compose-modules
Advanced tools
Comparing version 1.8.0 to 1.9.0
import { GraphQLSchema, ExecutionResult, GraphQLError } from 'graphql'; | ||
import { SchemaComposer, Resolver, ObjectTypeComposerFieldConfigAsObjectDefinition } from 'graphql-compose'; | ||
import { SchemaComposer, Resolver, ObjectTypeComposerFieldConfigAsObjectDefinition, SchemaPrinterOptions } from 'graphql-compose'; | ||
interface RunQueryOpts { | ||
@@ -21,4 +21,4 @@ fc: ObjectTypeComposerFieldConfigAsObjectDefinition<any, any, any> | Resolver; | ||
deep?: boolean; | ||
}): string; | ||
} & SchemaPrinterOptions): string; | ||
export {}; | ||
//# sourceMappingURL=testHelpers.d.ts.map |
@@ -164,8 +164,5 @@ "use strict"; | ||
sc.buildSchema(); | ||
return sc.Query.toSDL({ | ||
deep: (_a = opts.deep) !== null && _a !== void 0 ? _a : true, | ||
omitDescriptions: true, | ||
}); | ||
return sc.Query.toSDL(__assign(__assign({}, opts), { deep: (_a = opts.deep) !== null && _a !== void 0 ? _a : true, omitDescriptions: true, omitSpecifiedByUrl: true })); | ||
} | ||
exports.testSDL = testSDL; | ||
//# sourceMappingURL=testHelpers.js.map |
{ | ||
"name": "graphql-compose-modules", | ||
"license": "MIT", | ||
"version": "1.8.0", | ||
"version": "1.9.0", | ||
"description": "A toolset for construction GraphQL Schema via file structure", | ||
@@ -6,0 +6,0 @@ "repository": "https://github.com/graphql-compose/graphql-compose-modules", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
76266
835