-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
64 lines (56 loc) · 1.24 KB
/
server.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
62
63
64
const express = require('express');
const app = express();
const { note, graphQLNote } = require('./schemas');
const graphqlHTTP = require('express-graphql');
const bodyParser = require('body-parser');
const { handleError } = require('./utils');
app.use(bodyParser.json());
app.use(express.static("./public/"));
app.get('/api/notes',(req,res) => {
note.find({},{__v: 0},(err,docs) => {
if(err) {
return handleError(err,res);
}
res.status(200)
.send({
notes: docs
});
});
});
app.post('/api/notes', (req,res) => {
const model = req.body;
new note(model).save((err,doc) => {
if(err) {
return handleError(err,res);
}
res.status(200)
.send({
note: doc
});
});
});
app.put('/api/notes/:id', (req,res) => {
const data = req.body;
const id = req.params.id;
note.findOneAndUpdate({_id: id},data,{new: true},(err,doc) => {
if(err) {
return handleError(err,res);
}
res.status(200)
.send({
note: doc
});
});
});
app.delete('/api/notes/:id', (req,res) => {
const id = req.params.id;
note.findOneAndRemove({_id: id},(err,doc) => {
if(err) {
return handleError(err,res);
}
res.status(200)
.send();
});
});
app.use('/api/graphql/notes', graphqlHTTP({schema: graphQLNote}));
app.listen('3500');