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
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 |
|