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
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 |
|