Python: Column is greater than a value

Match only rows where column is greather than value.

Parameters

Examples

With `select()`

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