Hi all! I am using tags for tasks and task concur...
# prefect-ui
j
Hi all! I am using tags for tasks and task concurrency. Is there a place where I can see the tags assigned to each running task? Thank you very much!
k
Hey @jcozar, You’d have to use the GraphQL API to query this. Maybe something like this will get you what you need?
Copy code
query {
  task (where: {task_runs: {state: {_eq: "Running"}}, tags: {_eq: "test"}}){
    	flow {
    	  name
    	}
      name
      tags
      task_runs {
        state
      }
    }
  }
j
Thank you, perfect! That works for me 🙂