history
get_dataset_history(project_id, dataset_id, user=Depends(current_active_user), db=Depends(get_async_db))
async
¶
Returns a list of all HistoryRuns associated to a given dataset, sorted by timestamp.
Source code in fractal_server/app/routes/api/v2/history.py
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 |
|