Ravi Kumar
12/14/2022, 1:33 PMChristopher Boyd
12/14/2022, 2:09 PMquery {
flow_run (where: {state : {_eq: "Running"}}) {
id
name
}
}
Ravi Kumar
12/14/2022, 2:11 PMChristopher Boyd
12/14/2022, 2:16 PMimport prefect
client = prefect.Client()
client.graphql(
{
'query': {
'flow': {
'id'
}
}
}
)
Ravi Kumar
12/14/2022, 2:17 PMChristopher Boyd
12/14/2022, 2:18 PMRavi Kumar
12/14/2022, 2:19 PMChristopher Boyd
12/14/2022, 2:20 PM