Skip to content

Instantly share code, notes, and snippets.

@dabit3
Created October 20, 2016 05:26
Show Gist options
  • Save dabit3/5a5d94395dc56e266085072fe6c4df00 to your computer and use it in GitHub Desktop.
Save dabit3/5a5d94395dc56e266085072fe6c4df00 to your computer and use it in GitHub Desktop.
Apollo Tutorial - Model
const Mongoose = require('mongoose');
const PresidentSchema = Mongoose.Schema({
name: String,
party: String,
term: String,
});
const President = Mongoose.model('President', PresidentSchema);
module.exports = President;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment