simple-graphql
Version:
The simple way to generates GraphQL schemas and Sequelize models from your models definition.
14 lines • 532 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const sequelize_1 = __importDefault(require("sequelize"));
const graphql_1 = require("graphql");
exports.default = {
name: 'Boolean',
inputType: graphql_1.GraphQLBoolean,
outputType: graphql_1.GraphQLBoolean,
columnOptions: { type: sequelize_1.default.BOOLEAN }
};
//# sourceMappingURL=Boolean.js.map