How do i start a supabase realtime query with oper...
# help
h
How do i start a supabase realtime query with operators other than the eq. operator. Usually I query through:
supabase.client .from('$tableName:id=eq.$documentId')
. According to the walrus github other operators like gt. would be supported. But I always get an Unhandled Exception: relation "..." does not exist. Would be really nice if anyone could help 🙂
g
The only operator currently supported is .eq. The others in Walrus are not implemented. This was from an answer from Supabase I saw about two weeks ago.
h
Oh. Okay, thank you. I wish this feature would be included, because it would offer many benefits in many use cases