We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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?
The text was updated successfully, but these errors were encountered:
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
Sorry, something went wrong.
No branches or pull requests
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:
Is this the right way to do it?
The text was updated successfully, but these errors were encountered: