File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -333,14 +333,15 @@ def _batch_delete(
333333 def bulk_export (self , data_row_ids : List [str ]) -> List [DataRowMetadata ]:
334334 """ Exports metadata for a list of data rows
335335
336- >>> mdo.batch_delete ([data_row.uid for data_row in data_rows])
336+ >>> mdo.bulk_export ([data_row.uid for data_row in data_rows])
337337
338338 Args:
339339 data_row_ids: List of data data rows to fetch metadata for
340-
341340 Returns:
342- list of unsuccessful deletions.
343- An empty list means all data rows were successfully deleted.
341+ A list of DataRowMetadata.
342+ There will be one DataRowMetadata for each data_row_id passed in.
343+ This is true even if the data row does not have any meta data.
344+ Data rows without metadata will have empty `fields`.
344345
345346 """
346347
You can’t perform that action at this time.
0 commit comments