getAllMyFavoriteEntries

abstract suspend fun getAllMyFavoriteEntries(): List<Entry>

Get all favorites of the current user.

If user has a lot of entries, it could take a long time to get all of them


abstract suspend fun <T> getAllMyFavoriteEntries(eachGetOperation: (List<Entry>) -> T): List<Entry>

Get all favorite entries of the current user and after each get operation, run lambda block with result of get operation.

If user has a lot of favorites, it could take a long time to get all of them.

Samples

sampleEachOperation