chore: kaldırılan scratch.js dosyasını temizle

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Mustafa Yildiz
2026-08-18 22:41:21 +03:00
co-authored by Claude Sonnet 5
parent aab94db1fa
commit 407306914c
-8
View File
@@ -1,8 +0,0 @@
const { createClient } = require('@supabase/supabase-js');
const supabase = createClient(process.env.SUPABASE_URL, process.env.SUPABASE_SERVICE_ROLE_KEY);
async function test() {
const { data, error } = await supabase.from('cases').select('*, documents(id)');
console.log('Error:', error);
console.log('Data:', JSON.stringify(data, null, 2));
}
test();