I have a table "article" with the fields "id", "name" and "category".
How can I get a list of all articles where category = "Category1"?
SELECT * FROM ARTICLE WHERE category = 'Category1'
"category" should be a variable param.
As I know, you can't pass parameters to a Supabase View.
And I can't display the result of a FlutterFlow function in a ListView, can I?
So, can this be done with an API call?
Most important:
What should such an API call look like?
Does anyone kindly have an example of this?
I'm having trouble with the syntax and don't know how to convert the result of the API call into a structure, that I can display in a FlutterFlow ListView ...
Retrieve Data from Supabase
4 replies