Query Supabase Table
query_tableRead rows from an allowlisted Supabase table using optional equality filters, select columns, limit results, and order by a column.
Instructions
Read rows from an allowlisted Supabase table with optional equality filters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Rows to return. Capped by ZYNX_MAX_LIMIT. | |
| select | No | PostgREST select string. Default: *. | * |
| filters | No | Simple equality filters: { column: value }. | |
| orderBy | No | Optional column for descending order. | |
| tableName | Yes | Allowlisted Supabase table name. |