Filtering Data
filtering data
For data filtering, we’ll use query parameters. This will allow clients to fetch all tasks, just the complete tasks, or just the incomplete tasks.
Filtering Data
The completed
query parameter is on the task documents of MongoDB. This query parameter can be set to true
or false
. This will prevent clients from fetching unnecessary data tha they don’t plan on using.
First up, create an object to store the search criteria.
1 | const match = {} |
From there, check if the query parameter was provided. The provided value should be parsed into a boolean and stored on match.completed
.
1 | if (req.query.completed) { |
Last up, match
can be added onto populate
to fetch just the users that match the search criteria.
1 | await req.user.populate({ |
1 | // READ USER'S TASKS |
출처 : NodeJS course on Udemy by Andrew Mead