simple-graphql
Version:
The simple way to generates GraphQL schemas and Sequelize models from your models definition.
14 lines • 541 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 = __importDefault(require("./graphql"));
exports.default = {
name: 'Date',
inputType: graphql_1.default.Date,
outputType: graphql_1.default.Date,
columnOptions: { type: sequelize_1.default.DATE(6) }
};
//# sourceMappingURL=Date.js.map