Set the paging for the query (defaults to 0..10). - **offset**: Paging offset for the results. Defaults to 0 - **num**: How many results do we want
(self, offset: int, num: int)
| 247 | return args |
| 248 | |
| 249 | def paging(self, offset: int, num: int) -> "Query": |
| 250 | """ |
| 251 | Set the paging for the query (defaults to 0..10). |
| 252 | |
| 253 | - **offset**: Paging offset for the results. Defaults to 0 |
| 254 | - **num**: How many results do we want |
| 255 | """ |
| 256 | self._offset = offset |
| 257 | self._num = num |
| 258 | return self |
| 259 | |
| 260 | def verbatim(self) -> "Query": |
| 261 | """Set the query to be verbatim, i.e., use no query expansion |
no outgoing calls