Guest User

Untitled

a guest
Nov 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. const questionSchema = new Schema({
  2. text: String,
  3. responses: [ResponseSchema]
  4. });
  5.  
  6. const responseSchema = new Schema({
  7. _id: { type: Schema.Types.ObjectId, ref: 'User' },
  8. response: String
  9. });
Add Comment
Please, Sign In to add comment