John O'Reilly
05/17/2024, 8:42 AMPagingSource implementation be interacting with Apollo directly (as opposed to what I have right now where it interacts with a repository which then uses Apollo).
val characters: Flow<PagingData<CharacterDetail>> = Pager(PagingConfig(pageSize = 20)) {
CharactersDataSource(repository)
}.flowJohn O'Reilly
05/17/2024, 8:43 AMPagingDataPresenter which would wrap that PagingSource implementation
https://x.com/joreilly/status/1791211694305255600