const database = require('./database.js'); //the handler routines const handler = { Book: scalars => { //TODO }, Author: scalars => { //TODO }, create: (sets, matches) => { //TODO }, update: (sets, matches) => { //TODO }, delete: matches => { //TODO }, }; module.exports = handler;