@@ -67,6 +67,8 @@ def find_arrow_all(collection, query, *, schema=None, **kwargs):
67
67
against which to run the ``find`` operation.
68
68
- `query`: A mapping containing the query to use for the find operation.
69
69
- `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
70
+ If the schema is not given, it will be inferred using the first
71
+ document in the result set.
70
72
71
73
Additional keyword-arguments passed to this method will be passed
72
74
directly to the underlying ``find`` operation.
@@ -103,6 +105,8 @@ def aggregate_arrow_all(collection, pipeline, *, schema=None, **kwargs):
103
105
against which to run the ``aggregate`` operation.
104
106
- `pipeline`: A list of aggregation pipeline stages.
105
107
- `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
108
+ If the schema is not given, it will be inferred using the first
109
+ document in the result set.
106
110
107
111
Additional keyword-arguments passed to this method will be passed
108
112
directly to the underlying ``aggregate`` operation.
@@ -154,6 +158,8 @@ def find_pandas_all(collection, query, *, schema=None, **kwargs):
154
158
against which to run the ``find`` operation.
155
159
- `query`: A mapping containing the query to use for the find operation.
156
160
- `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
161
+ If the schema is not given, it will be inferred using the first
162
+ document in the result set.
157
163
158
164
Additional keyword-arguments passed to this method will be passed
159
165
directly to the underlying ``find`` operation.
@@ -173,6 +179,8 @@ def aggregate_pandas_all(collection, pipeline, *, schema=None, **kwargs):
173
179
against which to run the ``find`` operation.
174
180
- `pipeline`: A list of aggregation pipeline stages.
175
181
- `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
182
+ If the schema is not given, it will be inferred using the first
183
+ document in the result set.
176
184
177
185
Additional keyword-arguments passed to this method will be passed
178
186
directly to the underlying ``aggregate`` operation.
@@ -214,6 +222,8 @@ def find_numpy_all(collection, query, *, schema=None, **kwargs):
214
222
against which to run the ``find`` operation.
215
223
- `query`: A mapping containing the query to use for the find operation.
216
224
- `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
225
+ If the schema is not given, it will be inferred using the first
226
+ document in the result set.
217
227
218
228
Additional keyword-arguments passed to this method will be passed
219
229
directly to the underlying ``find`` operation.
@@ -243,6 +253,8 @@ def aggregate_numpy_all(collection, pipeline, *, schema=None, **kwargs):
243
253
against which to run the ``find`` operation.
244
254
- `query`: A mapping containing the query to use for the find operation.
245
255
- `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
256
+ If the schema is not given, it will be inferred using the first
257
+ document in the result set.
246
258
247
259
Additional keyword-arguments passed to this method will be passed
248
260
directly to the underlying ``aggregate`` operation.
0 commit comments