python sql query Attribution error
Hi All
This is my first post here. I am trying to use the python client to query one of my db tables. All works fine until I try to use where. Like this.
data = supabase.table(“atable").select("*").where(something=“something”).execute()
I get an error AttributeError: 'SyncSelectRequestBuilder' object has no attribute 'where'
Is there another operator I can use?
Thanks
This is my first post here. I am trying to use the python client to query one of my db tables. All works fine until I try to use where. Like this.
data = supabase.table(“atable").select("*").where(something=“something”).execute()
I get an error AttributeError: 'SyncSelectRequestBuilder' object has no attribute 'where'
Is there another operator I can use?
Thanks