Vipul
01/15/2021, 2:10 PMnicholas
query {
task_run(where: {flow_run_id: {_eq: "<<id>>"}}) {
id
state_result
}
}
assuming you're using the Results API. If you're using the Artifacts API, you'll want to grab all the task run ids from your flow run and then query for their artifacts like this:
task_run_artifact(where:{task_run_id:{_eq:"<<id>>"}}) {
id
data
}
Vipul
01/15/2021, 4:40 PMnicholas