@@ -136,7 +136,7 @@ export class ElasticIndexerService implements IndexerInterface {
136136
137137 query = this . buildTokenFilter ( query , filter ) ;
138138
139- return await this . elasticService . getList ( 'accountsesdt' , 'token' , query ) ;
139+ return await this . elasticService . getList ( 'accountsesdt' , 'token' , query , queryPagination . searchAfter ) ;
140140 }
141141
142142 async getTokenAccountsCount ( identifier : string ) : Promise < number | undefined > {
@@ -294,7 +294,7 @@ export class ElasticIndexerService implements IndexerInterface {
294294 . withPagination ( { from : pagination . from , size : pagination . size } )
295295 . withSort ( [ timestamp , nonce ] ) ;
296296
297- const elasticOperations = await this . elasticService . getList ( 'operations' , 'txHash' , elasticQuery ) ;
297+ const elasticOperations = await this . elasticService . getList ( 'operations' , 'txHash' , elasticQuery , pagination . searchAfter ) ;
298298
299299 this . bulkProcessTransactions ( elasticOperations ) ;
300300
@@ -559,7 +559,7 @@ export class ElasticIndexerService implements IndexerInterface {
559559 . withPagination ( { from : pagination . from , size : pagination . size } )
560560 . withSort ( [ timestamp , nonce ] ) ;
561561
562- const transactions = await this . elasticService . getList ( 'operations' , 'txHash' , elasticQuery ) ;
562+ const transactions = await this . elasticService . getList ( 'operations' , 'txHash' , elasticQuery , pagination . searchAfter ) ;
563563
564564 this . bulkProcessTransactions ( transactions ) ;
565565
0 commit comments