supabase_query
Select rows from a Supabase table with filters, ordering, and pagination. Configure columns, limits, and offsets for precise data retrieval.
Instructions
Select rows from a Supabase table with filters, ordering, and pagination
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of rows to return | |
| order | No | Array of order-by clauses | |
| table | Yes | Table name to query | |
| offset | No | Number of rows to skip | |
| select | No | Columns to select (default: *) | * |
| single | No | Return a single row (errors if not exactly one) | |
| filters | No | Array of filters to apply | |
| maybeSingle | No | Return a single row or null |