Lesson 9 - Finishing the Node.js API - The GET and PUT methods
In the previous lesson, API extension in Node.js - Schemas, validation, POST, DELETE, we advanced with our RESTful API in Node.js for a MongoDB movie database. Today we're going to finish the GET and PUT methods, then we'll have a product that can be used by a client application.
Retrieving Data - The GET Method
Now we'll extend our GET method for retrieving data from the database.
Currently we have GET programmed for the URLs /api/movies
and
/api/movies/id
. But that's not enough, as the client will not
usually need all the movies at once. That's why we'll introduce parameters for
the request with the URL /api/movies
. We've already decided what
parameters we're going to use in the last lesson when we were adding validation
functions.
GET /api/movies
By default, this query will return an array of all movies including all the information. However, we'll use query parameters to reduce the result gradually at the database level.
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
This article is licensed: Premium II, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
In this tutorial, we'll complete our Node.js and MongoDB API. We'll create responses to GET requests with different parameters. We'll also edit documents.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.