]>
Commit | Line | Data |
---|---|---|
6ccc6f60 RBR |
1 | import { createClient } from '@supabase/supabase-js'; |
2 | import { single } from './supabase'; | |
852ee620 | 3 | import { supabase } from '$lib/config/config'; |
a7cf03c1 | 4 | |
be1ce532 RBR |
5 | import type { Post } from '$lib/data/types'; |
6 | ||
852ee620 RBR |
7 | const client = createClient(supabase.url, supabase.key); |
8 | ||
6ccc6f60 RBR |
9 | export const post = (id: string, withTopic = false) => |
10 | single<Post>( | |
11 | client | |
12 | .from('posts') | |
13 | .select( | |
14 | withTopic | |
15 | ? `*, | |
852ee620 RBR |
16 | topic:topic_id ( |
17 | * | |
18 | ) | |
6ccc6f60 RBR |
19 | ` |
20 | : '*' | |
21 | ) | |
22 | .eq('id', id), | |
23 | null | |
24 | ); |