merest
Version:
Express based REST-full API for Mongoose models
89 lines (87 loc) • 3.01 kB
JavaScript
var ObjectId = require("mongoose").Types.ObjectId;
module.exports = exports = [
{
"_id": ObjectId("564e0da0105badc887ef1c42"),
"title": "What Have the Police Been Doing?",
"year": 1866,
"author": ObjectId("564e0da0105badc887ef1d41"), // Mark Twain
"description": "..."
}, {
"title": "The Celebrated Jumping Frog of Calaveras County",
"year": 1867,
"author": ObjectId("564e0da0105badc887ef1d41"), // Mark Twain
"description": "..."
}, {
"title": "Innocents Abroad",
"year": 1869,
"author": ObjectId("564e0da0105badc887ef1d41"), // Mark Twain
"description": "..."
}, {
"title": "Autobiography and First Romance",
"year": 1871,
"author": ObjectId("564e0da0105badc887ef1d41"), // Mark Twain
"description": "..."
}, {
"title": 'In the Fortress ("It does not touch me, not a whit")',
"year": 1847,
"author": ObjectId("564e0da0105badc887ef1d3e"), // Taras Shevchenko
"description": "..."
}, {
"title": 'Zapovit',
"year": 1845,
"author": ObjectId("564e0da0105badc887ef1d3e"), // Taras Shevchenko
"description": "..."
}, {
"title": 'Kobzar',
"year": 1840,
"author": ObjectId("564e0da0105badc887ef1d3e"), // Taras Shevchenko
"description": "..."
}, {
"title": 'Ruslan and Ludmila',
"year": 1820,
"author": ObjectId("564e0da0105badc887ef1d3f"), // Alexander Pushkin
"description": "..."
}, {
"title": 'The Prisoner of the Caucasus',
"year": 1821,
"author": ObjectId("564e0da0105badc887ef1d3f"), // Alexander Pushkin
"description": "..."
}, {
"title": 'Boris Godunov',
"year": 1825,
"author": ObjectId("564e0da0105badc887ef1d3f"), // Alexander Pushkin
"description": "..."
}, {
"title": 'The Little Tragedies',
"year": 1830,
"author": ObjectId("564e0da0105badc887ef1d3f"), // Alexander Pushkin
"description": "..."
}, {
"title": 'The Cruise of the Dazzler',
"year": 1902,
"author": ObjectId("564e0da0105badc887ef1d40"), // Jack London
"description": "..."
}, {
"title": 'A Daughter of the Snows',
"year": 1902,
"author": ObjectId("564e0da0105badc887ef1d40"), // Jack London
"description": "..."
}, {
"title": "An Old Soldier's Story",
"year": 1894,
"author": ObjectId("564e0da0105badc887ef1d40"), // Jack London
"description": "..."
}, {
"title": "Who Believes in Ghosts!",
"year": 1895,
"author": ObjectId("564e0da0105badc887ef1d40"), // Jack London
"description": "..."
}, {
"title": "The hypothetical work 1",
"year": 2016,
"author": [
ObjectId("564e0da0105badc887ef1d40"), // Jack London
ObjectId("564e0da0105badc887ef1d3e"), // Taras Shevchenko
]
}
];