-
Notifications
You must be signed in to change notification settings - Fork 3.1k
feat(supabase): added ability so select certain rows in supabase tools #2689
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Greptile SummaryAdded column selection capability to Supabase
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant Block as Supabase Block
participant Tool as Query/GetRow Tool
participant Supabase as Supabase REST API
User->>Block: Configure operation with select parameter
Note over User,Block: select: "id,name,email" (optional)
Block->>Tool: Execute with params (including select)
Tool->>Tool: Encode select parameter
Note over Tool: encodeURIComponent(selectColumns)
Tool->>Supabase: GET /rest/v1/{table}?select={encoded_columns}&filter=...
Supabase-->>Tool: Return only specified columns
Tool-->>Block: Transform response
Block-->>User: Display selected columns only
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
6 files reviewed, 2 comments
#2689) * feat(supabase): added ability so select certain rows in supabase tools * ack PR comments
Summary
Type of Change
Testing
Tested manually
Checklist