Sure! It's pretty much the same format as in the docs. Here's an example call to my developers table (without the Supabase base URL). This is a deeper join because tool_id in the developer_tools table is linked to records in the tools table. /developers?profile_complete=eq.true&select=first_name,last_name,country_code,bio,developer_tools(tool_id:tools(name,tool_url))
Got that, I just don't get how to do it in the toddle UI ..
Tom Ireland
27 days ago
Dec 17, 2024, 2:52 PM
Query params
profile_complete and select are query params. The rest in between is the values I'm providing, which includes columns and the joining by table name.
Tom Ireland
27 days ago
Dec 17, 2024, 2:55 PM
One trick I use is to pass each column as an array item in a formula and then convert to string. You get your commas for free then and it makes it easier to add/remove columns instead of typing in the field.