You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With this we should think about how to pass parametrs to query without batabind-magic. For example, we can do something like this QueryParametr.builder(MyEntity.class).field("myFieldTimestamp").value(Instant.now()) and use it to convert value to ydb view with all databind rules
Updated: looks like we need think about using classes from #52 for this case
Nowadays, creating custom queries in YOJ is very difficult, which restrict users and forces them to dodge. We need to provide a convenient way.
What's difficult now:
What we want:
Proposal:
public interface CustomQuery<PARAMS, RESULT> {}
<PARAMS, RESULT> RESULT customQuery(CustomQuery<PARAMS, RESULT> query, PARAMS params)
The text was updated successfully, but these errors were encountered: