graphql-playground/server/models/author.js
2020-01-29 01:00:52 -05:00

9 lines
194 B
JavaScript

const mongoose = require('mongoose');
const { Schema } = mongoose;
const authorSchema = new Schema({
name: String,
age: Number
});
module.exports = mongoose.model('Author', authorSchema);