UNPKG

@tricoteuses/senat

Version:

Handle French Sénat's open data

15 lines (13 loc) 290 B
import { Question } from '../types/questions' import { dbByName } from '../databases' export const getAllQuestions = async (): Promise<Question[]> => { return ( await dbByName.questions.any( ` SELECT * FROM tam_questions ` ) ) // TODO parse and trim? }