searchVersesByIDs

abstract suspend fun searchVersesByIDs(text: String, ids: List<String>, limit: Long, offset: Long): List<VerseEntity>

Returns a list of VerseEntity objects with the given IDs.

Return

A Flow of VerseEntity objects with the matching IDs.

Parameters

ids

The list of IDs to retrieve.

limit

The maximum number of results to return.

offset

The offset for paginated results.