I am trying to set up a graph based on a table stored in supabase. The backend query will return a table with 4 columns, the userID, the number Id of the month (1 = january), the name of the month and a value stored as double. I perform the backend query filtering by the authenticated user. To use the graph i need an object stored as a list. So i was trying to save my backend response in a list object (example: save the name of the months returned in a list of strings object). I was struggling to save the response as an array. Is there anyway to perform that on flutterflow? Or should i try to create a view on supabase that stores the values in a list the way i want and then perform the supabase query?