Im using Flutterflow with Supabase
I have two tables: classification and classifaication_parent_child. Classification has an id and type. Classifaication_parent_child has parent and child both referencing the id of the classification table. I wanted to return the types of childern of a parent
I think the only way to do this is with the Flutterflow API.
I threw for need to write a get request that returns the types of the children of a parent.
classification_parent_child?select=jsonb_build_object('child_type', classification.type)&join=classification on classification.id=classification_parent_child.child&parent=eq.PARENT_ID
classification_parent_child?select=concat('{"child_type": "', classification.type, '"}')&join=classification on classification.id=classification_parent_child.child&parent=PARENT_ID
classification_parent_child?select=classification.type as child_type&join=classification on classification.id=classification_parent_child.child&parent=eq.PARENT_ID
None of this works