-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
61 lines (48 loc) · 981 Bytes
/
test.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
// Connect DB
mongoose.connect('mongodb://localhost/pcat-test-db', {
useNewUrlParser: true,
useUnifiedTopology: true,
});
// Create Schema
const PhotoSchema = new Schema({
title: String,
description: String,
});
const Photo = mongoose.model('Photo', PhotoSchema);
// Create a Photo
/*
Photo.create({
title: 'Photo Title 2',
description: 'Photo Desc 2',
});
*/
// Read a Photo
/*
Photo.find({}, (err, data) => {
console.log(data);
});
*/
// Update a Photo
/*
const id = '61c9e2ef79279e3ca391f3f7'
Photo.findByIdAndUpdate(
id,
{
title: "Photo 111 updated",
description: "Photo 111 desc updated"
},
{
new: true
},
(err, data) => {
console.log(data)
}
)
*/
// Delete a Photo
const id = '61c9e485b6b7b14ab199de46';
Photo.findByIdAndDelete(id, (err, data) => {
console.log(`${id} nolu Photo silindi`);
});