Adam Roderick
01/18/2021, 12:42 PMJenny
01/18/2021, 2:51 PMquery {
flow_run (where: {state: {_eq: "Success"}, start_time: {_gte: "2020-01-10"}, labels: {_eq: ["label-name"]} }) {
id
name
}
}
You'll need to replace "label-name" with your labels and the "gte" means greater than or equal so you can update the date as needed. (You can also switch success to failed and add what other fields you need.) If it's a feature you think you'd use often and would like in the UI, please add a ticket in the UI repoAdam Roderick
01/18/2021, 5:59 PM