I have been trying to test Flutter Flow and different database systems for an app I am developing. It struck me yesterday that I cannot perform the following simple query:
SELECT steps
FROM distances
WHERE "fromlocation" = varStartingPoint
AND "tolocation" = varEndingPoint;
Instead, when I do a backend query I get the entire record and have to write custom code to parse the data and find the correct data element.
That can't possibly be true, is it??