How to retrieve all the artifacts lineage for a set of runs, based on both the name of the run, and the name of the artifact? #1486
-
I have several runs with the named What I’m using to try to achieve this is calling
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
To filter all artifacts lineage directly by run name and artifact name: from polyaxon.client import RunClient
RunClient.client.runs_v1.get_runs_artifacts_lineage(project="PROJECT_NAME", query="run.name: RUN_NAME, kind: ARTIFACT_KIND, name: ARTIFACT_NAME") |
Beta Was this translation helpful? Give feedback.
To filter all artifacts lineage directly by run name and artifact name: