{
username: String,
questions: [{
name: String,
link: String,
rating: Number,
note: String
}]
}
- returns an array of all notes
- request.body should be of the form: { username: String }
- returns "count" number of notes starting at "questionNumber" (included)
- startIndex = questionNumber -1
- endIndex = startIndex + count - 1
- request.body should be of the form: { username: String, questionNumber: Number (1-indexed), count: Number }
- request.body should be a JSON of the form:
{ username: String, questionName: String, questionURL: String, questionRating: Number, note: String
}
- request.body should be a JSON of the form:
{ username: String, questionNumber: Number, note: String }
{ username: String, questionNumber: Number
}