Open
Conversation
HIPPIEKICK
approved these changes
Dec 10, 2024
Comment on lines
+34
to
+62
| app.get("/dogs", (req, res) => { | ||
| const { category, size, origin, familyFriendly } = req.query; // Get all filters from query parameters | ||
| console.log("Query parameters:", req.query); | ||
|
|
||
| let filteredDogs = [...dogs]; | ||
|
|
||
| // Start defining your routes here | ||
| if (category) { | ||
| filteredDogs = filteredDogs.filter(dog => | ||
| dog.category.toLowerCase() === category.toLowerCase() | ||
| ); | ||
| } | ||
| if (size) { | ||
| filteredDogs = filteredDogs.filter(dog => | ||
| dog.size.toLowerCase() === size.toLowerCase() | ||
| ); | ||
| } | ||
| if (origin) { | ||
| filteredDogs = filteredDogs.filter(dog => | ||
| dog.origin.toLowerCase() === origin.toLowerCase() | ||
| ); | ||
| } | ||
| if (familyFriendly) { | ||
| filteredDogs = filteredDogs.filter(dog => | ||
| dog.familyFriendly.toLowerCase() === familyFriendly.toLowerCase() | ||
| ); | ||
| } | ||
|
|
||
| res.json(filteredDogs); | ||
| }); |
Contributor
There was a problem hiding this comment.
Excellent work making use of query params and chaining the filters like this, works like a charm ⭐
Author
There was a problem hiding this comment.
Thank you for the feedback @HIPPIEKICK! Hahaha I was also really confused by the "Toy" category so I asked ChatGPT and apparently it's "the official classification for small breeds that were specifically developed to be companion pets rather than working dogs". So small lap dogs! You live and you learn 😂😂
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Netlify link
https://project-express-api-y1pr.onrender.com/