mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-19 05:54:06 +01:00
16 lines
506 B
TypeScript
16 lines
506 B
TypeScript
import { SupabaseClient } from "@supabase/supabase-js";
|
|
|
|
function getAllTagsQuery(client: SupabaseClient) {
|
|
return client.from("tag").select("id, value");
|
|
}
|
|
|
|
function getALlFundedStatusQuery(client: SupabaseClient) {
|
|
return client.from("funded_status").select("id, value, description");
|
|
}
|
|
|
|
function getAllBusinessTypeQuery(client: SupabaseClient) {
|
|
return client.from("business_type").select("id, value, description");
|
|
}
|
|
|
|
export { getAllBusinessTypeQuery, getALlFundedStatusQuery, getAllTagsQuery };
|