Closed
Description
Note: I'm on the latest version: supabase==1.0.3
Is your feature request related to a problem? Please describe.
Related to this issue. However, that issue isn't fixed yet
Describe the solution you'd like
When executing supabase.table("item").select().execute().data
, it is crucial for me and other users to get a return type beyond Any. In this query the return type should be Item, just as it is when using supabase with Typescript.
Describe alternatives you've considered
I saw Prisma for Python offers this. E.g. items: List[Item] = await prisma.item.find_many()
works as expected.