Let's take the example from readme:
Result<Person> query = data
.select(Person.class)
.where(Person.NAME.lower().like("b%")).and(Person.AGE.gt(20))
.orderBy(Person.AGE.desc())
.limit(5)
.get();
Is it a possibility to inspect (via println or IDE's debugging) the select string that is send to database for execution?