graphql-transformer-core
Version:
A framework to transform from GraphQL SDL to AWS cloudFormation.
44 lines • 1.32 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const graphql_1 = require("graphql");
const DEFAULT_SCHEMA_DEFINITION = {
kind: graphql_1.Kind.SCHEMA_DEFINITION,
directives: [],
operationTypes: [
{
kind: graphql_1.Kind.OPERATION_TYPE_DEFINITION,
operation: 'query',
type: {
kind: graphql_1.Kind.NAMED_TYPE,
name: {
kind: graphql_1.Kind.NAME,
value: 'Query',
},
},
},
{
kind: graphql_1.Kind.OPERATION_TYPE_DEFINITION,
operation: 'mutation',
type: {
kind: graphql_1.Kind.NAMED_TYPE,
name: {
kind: graphql_1.Kind.NAME,
value: 'Mutation',
},
},
},
{
kind: graphql_1.Kind.OPERATION_TYPE_DEFINITION,
operation: 'subscription',
type: {
kind: graphql_1.Kind.NAMED_TYPE,
name: {
kind: graphql_1.Kind.NAME,
value: 'Subscription',
},
},
},
],
};
exports.default = DEFAULT_SCHEMA_DEFINITION;
//# sourceMappingURL=defaultSchema.js.map