makridenko / supadantic

Supadantic is a small Python library that allows you to manage Supabase tables through Pydantic models.
https://makridenko.github.io/supadantic/
MIT License
24 stars 2 forks source link

Optimize supabase queries by sending a single request at the end of `QSet` formation #20

Open makridenko opened 2 months ago

makridenko commented 2 months ago
# This hits supabase 3 times, need 1 
User.filter(eq={'name': 'name'}).filter(eq={'age': 21}).filter(eq={'is_active': True})