mirror of
https://github.com/Ratstail91/sineQL.git
synced 2025-11-29 02:34:28 +11:00
26 lines
307 B
JavaScript
26 lines
307 B
JavaScript
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; |