File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ public async Task AnotherPagingTestAsync()
6868 fieldList ,
6969 extraQueryString ,
7070 "wss_sys_updated_on" ,
71+ 3 ,
7172 default ) . ConfigureAwait ( false ) ;
7273 Assert . NotNull ( result ) ;
7374 Assert . NotEmpty ( result ) ;
Original file line number Diff line number Diff line change @@ -206,6 +206,7 @@ public async Task<List<JObject>> GetAllByQueryAsync(
206206 List < string > ? fieldList = null ,
207207 string ? extraQueryString = null ,
208208 string ? customOrderByField = null ,
209+ int ? pageSize = null ,
209210 CancellationToken cancellationToken = default )
210211 {
211212 _logger . LogDebug ( $ "Calling { nameof ( GetAllByQueryAsync ) } " +
@@ -227,7 +228,7 @@ public async Task<List<JObject>> GetAllByQueryAsync(
227228 query ,
228229 fieldList ,
229230 extraQueryString ,
230- _options . PageSize ,
231+ pageSize ?? _options . PageSize ,
231232 customOrderByField ,
232233 cancellationToken
233234 ) . ConfigureAwait ( false ) ;
You can’t perform that action at this time.
0 commit comments