lamassu-server/lib/new-admin/graphql/resolvers/cashbox.resolver.js
Sérgio Salgado 21708aa75c feat: cashbox history tab
feat: add information fields to cashbox_batches table
2021-07-05 11:06:16 +01:00

9 lines
165 B
JavaScript

const cashbox = require('../../../cashbox-batches')
const resolvers = {
Query: {
cashboxBatches: () => cashbox.getBatches()
}
}
module.exports = resolvers