Hi guys,
I'm looking for some way to fetch only one row from a SQLite backend query. I know I can limit in the query, indeed my query will return only one row, but the point is that Flutterflow is always thinking that the query will return more than one row and when I attach the query to a component, it is creating N child components of it, since it is the default behaviour with N rows returned from the query.
My point is I have a initial backend query that will bring all data from my 'book' table. This query will return a column with "author_id" and in another component that I'll show author's information, I'm attaching another query that will bring a row from "author" table using this "author_id" as parameter, and this query will return only one row, but as flutterflow don't recognize this, it is visually multiplying the component.
Can anyone help me?