https://dagster.io/ logo
#dagster-support
Title
# dagster-support
k

Krishna Somasundaram Rm ee19b147

07/15/2022, 11:55 AM
Hi, Prefect supports filtering through past runs based on the tag attatched to the runRequest. Does dagster support a similar thing?
dagster bot responded by community 1
z

Zach

07/15/2022, 5:14 PM
You can do this in the Dagit UI using the Filter text box in the Runs page, or via the GraphQL runsOrError endpoint
1
k

Krishna Somasundaram Rm ee19b147

07/16/2022, 7:31 AM
Could you give a sample of what the query would look like? I've tried this:
Copy code
{
  runsOrError(filter:{
    tags:{
      key:"foo"
      value:"bar"
    }
  }){
		__typename
  }
}
2 Views