Get up to 80 % extra points for free! More info:

Lesson 8 - API extension in Node.js - Schemas, validation, POST, DELETE

In the previous lesson, Reading Data From MongoDB, RESTful API with a database, we learned about important operations that the MongoDB database offers. We also created the basis for our Node.js movie API. Today we're going to expand the API significantly and add a person collection (for actors/directors).

Schemas

We'll start by adding a mongoose schema for persons (actors and directors, they will be in a single collection) and edit the existing movie schema. We'll also create an array of genres (Strings) that can later be assigned to movies. We could create an extra collection for the genres, but we'll store them in an array to keep things simple:

const movieSchema = new mongoose.Schema({
    name: String,
    year: Number,
    directorID: mongoose.Schema.Types.ObjectId,
    actorIDs: [mongoose.Schema.Types.ObjectId],
    genres: [String],
    isAvailable: Boolean,
    dateAdded: {
        type: Date,
        default: Date.now
    }
});

const personSchema = new mongoose.Schema({
    name: String,
    birthDate: Date,
    country: String,
    biography: String,
    role: String // "actor" or "director"
});

const genres = ["sci-fi", "adventure", "action", "romantic", "animated", "comedy"];
const Movie = mongoose.model("Movie", movieSchema);
const Person = mongoose.model("Person", personSchema);

A news here is


 

...End of the preview...
Continue further

You will gain knowledge worth hundreds of thousands for a few crowns

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

Buy all currently available lessons with exercise submitting and other features for just $5.76
Current account balance $0
By buying this package, you'll have access to all 9 articles (9 lessons) in this course.

This article is licensed: Premium II, by buying this article, you agree with the terms of use.

What will you get from us in the next lessons?
  • 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 will expand the Node.js API with MongoDB with a new collection with people. We program responses to POST and DELETE requests.

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.

Article has been written for you by Radek Veverka
Avatar
Activities