I can use find() to get limited items count from query
public List<T> find(final long offset, final long limit)
But unfortunately there is no ability to do the same with LiveData, as it creates based on Query
public ObjectBoxLiveData(Query<T> query)
And in case of huge data it can be performance problem.