import asyncio from app.services.supabase_client import SupabaseService async def main(): service = SupabaseService() orgs = await service.select("organizations") if not orgs: print("No organizations found.") for org in orgs: print(f"Org ID: {org['id']}") print(f"Name: {org['name']}") print(f"Competition Settings: {org.get('competition_settings')}") print(f"Roster Settings: {org.get('roster_settings')}") print("---") asyncio.run(main())