Match only rows where column matches pattern case-sensitively.
column
pattern
The name of the column to apply a filter on
The pattern to match by
response = ( supabase.table("planets") .select("*") .like("name", "%Ea%") .execute() )