Can someone help me with some graphQL stuff. I nee...
# ask-community
p
Can someone help me with some graphQL stuff. I need to find all the flows that have a task running with a certain keyword.
a
@Pinakpani Mukherjee what do you mean by keyword? you mean finding all flows that have a task with a specific name? or specific task tags?
p
specific task tags
a
This is incomplete, but you could use as a start:
Copy code
{
  flow(where: {tasks: {tags: {_eq: "x"}}}) {
    name
    id
  }
}
p
Thanks a lot.