Hi, i'm Gilles.
In my project, I’ve set up a Supabase foreign key from affichage_joueur_equipe_b.utilisateur_id
to Utilisateur.id
. The relationship is correctly detected in Supabase and appears with the key icon in FlutterFlow after I click “Get Schema”.
However, when using this table (`affichage_joueur_equipe_b`) in a ListView, I only have access to the raw fields (e.g. prenom
, nom
, index
) but I don’t see any of the related fields like utilisateur_id.nom
, utilisateur_id.index
, etc.
Expected behavior: I should be able to access the related data from Utilisateur
in the query output or within widgets inside the ListView.
Is this a known issue or am I missing something in the configuration?
Thanks in advance!