supabase : select 쿼리
supabase :
select 쿼리1const { data, error } = await supabase 2.from('table') 3.select( 4`id, title, content`, 5) 6.eq('id', id) 7.eq('deleted', false); 8 9if (error) { 10 console.log(error); 11 return null; 12} 13 14if (data) { 15 console.log('data : ', data); 16}
댓글
등록된 댓글이 없습니다.