Indicate the fields to be returned in the response. These fields are returned in addition to any others implicitly specified. ### Parameters - **fields**: If fields not specified, all the fields will be loaded. Otherwise, fields should be given in the forma
(self, *fields: str)
| 118 | self._scorer: str = "TFIDF" |
| 119 | |
| 120 | def load(self, *fields: str) -> "AggregateRequest": |
| 121 | """ |
| 122 | Indicate the fields to be returned in the response. These fields are |
| 123 | returned in addition to any others implicitly specified. |
| 124 | |
| 125 | ### Parameters |
| 126 | |
| 127 | - **fields**: If fields not specified, all the fields will be loaded. |
| 128 | Otherwise, fields should be given in the format of `@field`. |
| 129 | """ |
| 130 | if fields: |
| 131 | self._loadfields.extend(fields) |
| 132 | else: |
| 133 | self._loadall = True |
| 134 | return self |
| 135 | |
| 136 | def group_by( |
| 137 | self, fields: Union[str, List[str]], *reducers: Reducer |