File size: 364 Bytes
c6abe34 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import asyncio
from app.services.supabase_client import get_supabase_service
async def main():
supabase = get_supabase_service()
res = await supabase.select("organizations", limit=1)
if res:
print("Columns found:")
print(list(res[0].keys()))
else:
print("No orgs found")
if __name__ == "__main__":
asyncio.run(main())
|