def get_n_questions_updated_after_timestamp(self, timestamp, n):
     questions = QuestionRepository.fetch_n_updated_after(float(timestamp), int(n))
     return self.convert_to_json(questions)