supabase_query
Execute SELECT queries on a Supabase table with filters, ordering, and pagination to retrieve specific data rows.
Instructions
Execute a SELECT query on a Supabase table with optional filtering, ordering, and pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of rows to return | |
| order | No | Order by clause (e.g., "created_at.desc") | |
| table | Yes | Table name to query | |
| filter | No | Filter conditions (key-value pairs) | |
| offset | No | Number of rows to skip | |
| select | No | Columns to select (default: *) | * |