Finds all rows whose columns match the specified query
object.
The object to filter with, with column names as keys mapped to their filter values
final data = await supabase
.from('countries')
.select()
.match(\{ 'id': 2, 'name': 'Albania' \});