Python: Column is greater than or equal to a value

Match only rows where column is greater than or equal to value.

Parameters

Examples

With `select()`

response = (
    supabase.table("planets")
    .select("*")
    .gte("id", 2)
    .execute()
)