Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What is the right way to extend a schema? #121

Open
jesobreira opened this issue Aug 5, 2020 · 1 comment
Open

What is the right way to extend a schema? #121

jesobreira opened this issue Aug 5, 2020 · 1 comment

Comments

@jesobreira
Copy link

I'm trying to figure out how to 'extend' a schema (i.e. create a schema that inherits properties from a parent schema).

This is how I'm doing it:

const Vehicle = new Schema({
  color: String
})

const Car = new Schema({
   ...Vehicle.props,
   licensePlate: String
})

Is this the right way to do it?

@robsoncarvalholeite
Copy link

Can't you do like this?

const vehicleShape = {
  color: String
}

const VehicleSchema = new Schema(vehicleShape)

const CarSchema = new Schema({
   ...vehicleShape,
   licensePlate: String
})

Let me know if it worked for you!
tks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants