Hey @shawnbuilds! If you’re reporting an issue with a flow or an error in a run, please include the run link and make sure it’s shareable so we can take a look.
Find your run link on the history page. Format: https://www.gumloop.com/pipeline?run_id={your_run_id}&workbook_id={workbook_id}
Make it shareable by clicking “Share” → ‘Anyone with the link can view’ in the top-left corner of the flow screen.
Provide details about the issue—more context helps us troubleshoot faster.
The issue is not with the list type mismatch, you’re actually passing in a List / Array which is indicated in the input to the supabase node as its enumerated.
The problem here is that the you’re trying to insert the value "[]" into a column that’s defined as an ethnicity_type enum. Enum types in PostgreSQL can only accept predefined values. The empty array string "[]" is not one of the allowed values for the ethnicity_type enum.
You’d have to adjust the field type to accept empty arrays.
Let me know if this makes sense and works for you.