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
Answered
by
polyaxon-team
polyaxon-team
asked this question in
Q&A
I have several runs with the named What I’m using to try to achieve this is calling
|
Answered by
polyaxon-team
Apr 8, 2022
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") |
0 replies
Answer selected by
polyaxon-team
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To filter all artifacts lineage directly by run name and artifact name: