const { Schema , model} = require("mongoose") const schema = new Schema({ User: { email: String, password: String, project: [Project] } }) model