Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
storage-mongo-node
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
microservices
storage-mongo-node
Commits
70fc609c
Commit
70fc609c
authored
Apr 13, 2018
by
Vadym Gidulian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added deleting of multiple records
parent
16261f8f
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
index.js
src/index.js
+15
-0
No files found.
src/index.js
View file @
70fc609c
...
...
@@ -147,6 +147,21 @@ app.patch('/:collection/:id', (req, res) => {
});
});
});
app
.
delete
(
'/:collection'
,
(
req
,
res
)
=>
{
mongoSafeConnect
(
res
,
client
=>
{
client
.
db
(
DB_NAME
).
collection
(
req
.
params
.
collection
).
deleteMany
(
req
.
body
.
filter
,
(
err
,
result
)
=>
{
if
(
err
)
throw
err
;
if
(
result
.
deletedCount
)
{
res
.
status
(
200
).
send
();
}
else
{
res
.
status
(
404
).
send
();
}
client
.
close
();
});
});
});
app
.
delete
(
'/:collection/:id'
,
(
req
,
res
)
=>
{
mongoSafeConnect
(
res
,
client
=>
{
client
.
db
(
DB_NAME
).
collection
(
req
.
params
.
collection
).
findOneAndDelete
({
_id
:
toId
(
req
.
params
.
id
)},
(
err
,
result
)
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment