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
Since one of the most common operations is to load an object by its id, we need a fast and convenient API to do this. This could be something like <T> T queryObjectById(Class<T> clazz, String id). Also a bulk operation would be nice: <T> List<T> queryObjectsById(Class<T> clazz, List<String> ids)
The text was updated successfully, but these errors were encountered:
Since one of the most common operations is to load an object by its id, we need a fast and convenient API to do this. This could be something like
<T> T queryObjectById(Class<T> clazz, String id)
. Also a bulk operation would be nice:<T> List<T> queryObjectsById(Class<T> clazz, List<String> ids)
The text was updated successfully, but these errors were encountered: