Limit the results to a specific set of pre-known document ids of any length.
(self, *ids)
| 49 | return self._query_string |
| 50 | |
| 51 | def limit_ids(self, *ids) -> "Query": |
| 52 | """Limit the results to a specific set of pre-known document |
| 53 | ids of any length.""" |
| 54 | self._ids = ids |
| 55 | return self |
| 56 | |
| 57 | def return_fields(self, *fields) -> "Query": |
| 58 | """Add fields to return fields.""" |
no outgoing calls