Anand
Anand
I think our existing wolfram alpha command can return meanings of words as well 
@Brodevil no worries, maybe keep it open and try thinking of something more to add to this idea maybe?
How is the maybe_single method different from `single`?
Thanks for the explanation! 😄
I'll mark this issue as a wontfix until it's solved upstream
Hi, apologies for the late response. Note that when you chain multiple filters as you have done in your example, the effect is that they are joined with an AND,...
PS: in the newer versions, the query response isn't subscriptable as the `.execute()` method returns an instance of [`APIResponse`](https://postgrest-py.readthedocs.io/en/latest/api/responses.html#postgrest.APIResponse), so you'd do ```py res = supabase_client.table("table").select("*").eq('col1', value1).lte('col2', value2).lte('col3', value3).execute() res.data...
Hmm, that's very odd. I am not able to reproduce this. Quickly tried this:  Queried similar to what you have shown: ```ipython In [8]: r = client.from_("example").select("*").eq("foo", 1).eq("bar", "helloworld").neq("baz",...
Also if possible, enable debug logging as described here https://postgrest-py.readthedocs.io/en/latest/examples/logging.html and send that output as well (after removing your API URL) Sorry I'm not able to get back to your...
Hi, using the signed-in user's bearer token has not yet been implemented. I am planning on getting to this soon-ish.