Files
Compass/web/lib/supabase/votes.ts
2025-10-26 13:53:46 +01:00

14 lines
326 B
TypeScript

import {db} from 'web/lib/supabase/db'
import {OrderBy} from "common/votes/constants";
export const getVotes = async (params: { orderBy: OrderBy }) => {
const {orderBy} = params
const {data, error} = await db.rpc('get_votes_with_results' as any, {
order_by: orderBy,
});
if (error) throw error;
return data
}