30 lines
773 B
JavaScript
30 lines
773 B
JavaScript
// Copyright IBM Corp. 2014,2016. All Rights Reserved.
|
|
// Node module: loopback
|
|
// This file is licensed under the MIT License.
|
|
// License text available at https://opensource.org/licenses/MIT
|
|
|
|
var loopback = require('../../');
|
|
var server = module.exports = loopback();
|
|
var CartItem = require('./models').CartItem;
|
|
var memory = loopback.createDataSource({
|
|
connector: loopback.Memory,
|
|
});
|
|
|
|
server.use(loopback.rest());
|
|
server.model(CartItem);
|
|
|
|
CartItem.attachTo(memory);
|
|
|
|
// test data
|
|
CartItem.create([
|
|
{ item: 'red hat', qty: 6, price: 19.99, cartId: 1 },
|
|
{ item: 'green shirt', qty: 1, price: 14.99, cartId: 1 },
|
|
{ item: 'orange pants', qty: 58, price: 9.99, cartId: 1 },
|
|
]);
|
|
|
|
CartItem.sum(1, function(err, total) {
|
|
console.log(total);
|
|
});
|
|
|
|
server.listen(3000);
|