For ObjectionJS, as this line will fetch all the persons in db:
const people = await Person.query();
Would the query() in the line below fetch all the persons in db before executing the findById function?
const person = await Person.query().findById(1);
One thing I want to ensure is to fetch minimal data from database. Thanks.