-
Notifications
You must be signed in to change notification settings - Fork 12
/
playGround.js
38 lines (35 loc) · 985 Bytes
/
playGround.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const Company = require('./models/companies');
const Group = require('./models/groups');
exports.test = {
model: () => {
console.log('모델 테스트');
// const cp = new Company({
// name: '테스트',
// });
// cp.save()
// .then((r) => {
// console.log(r);
// })
// .catch(err => console.error(err));
// Company.findOne({ name: '테스트' })
// .then((cp) => {
// if (!cp) throw new Error('회사가 존재하지 않음');
// const gr = new Group({
// name: '소속1',
// cp_id: cp._id,
// });
// return gr.save();
// })
// .then((gr) => {
// return Company.findOneAndUpdate(
// { _id: gr.cp_id },
// { $addToSet: { gr_ids : gr._id } },
// { new: true })
// .populate('gr_ids');
// })
// .then((r) => {
// console.log(r);
// })
// .catch(err => console.error(err));
},
};