You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create api routes for accessing QuizItem objects from the database. There exist some services already in apps/backend/service.ts you can use, update or look to create your own.
ideas for routes:
router.get("/quiz/:id",getQuizItemByIdasany)// GET method returning quiz item by idrouter.get("/quiz/:topic",getQuizItemByTopicasany)// GET method returning quiz item by topic
and more possibly ...
The text was updated successfully, but these errors were encountered:
Create api routes for accessing QuizItem objects from the database. There exist some services already in
apps/backend/service.ts
you can use, update or look to create your own.ideas for routes:
and more possibly ...
The text was updated successfully, but these errors were encountered: