Files
smartagenda_pap/test.mjs

17 lines
820 B
JavaScript

import { createClient } from '@supabase/supabase-js';
const supabaseUrl = 'https://jqklhhpyykzrktikjnmb.supabase.co';
const supabaseAnonKey = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Impxa2xoaHB5eWt6cmt0aWtqbm1iIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NjgzODQ0MDgsImV4cCI6MjA4Mzk2MDQwOH0.QsPuBnyUtRPSavlqKj3IGR9c8juT02LY_hSi-j3c6M0';
const supabase = createClient(supabaseUrl, supabaseAnonKey);
async function check() {
const { data: profiles, error: err1 } = await supabase.from('profiles').select('*');
const { data: shops, error: err2 } = await supabase.from('shops').select('*');
console.log("Profiles:", profiles?.map(p => ({ id: p.id, role: p.role, name: p.name, shop_name: p.shop_name })));
console.log("Shops:", shops?.map(s => ({ id: s.id, name: s.name })));
}
check();