export default function(server) { let author = server.create('author', { name: 'John Steinbeck' }); author.createBook({ title: 'Of Mice and Men' }); author.createBook({ title: 'The Grapes of Wrath' }); author.createBook({ title: 'Travels with Charley' }); }