This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
quizzy-application/drill-and-practice/services/questionService.js
2023-03-09 13:37:03 +02:00

9 lines
232 B
JavaScript

import { sql } from "../database/database.js";
const countQuestions = async () => {
const result = await sql`SELECT COUNT(id) FROM questions`;
return result.rows[0].count;
};
const getQuestionsByTopicId = async (topicId) => {