Florian Kühnlenz
02/15/2022, 1:11 PM{
  flow_group(
    where: {flows: {name: {_ilike: "%name%"}, archived: {_eq:false}}}  ) {
    id
    name
    flows{
      name
      id
      archived
    }
  }
}
Will not actually filter for not archived versions. What am I doing wrong?Anna Geller
create_flow_run Prefect task?
from prefect.tasks.prefect import create_flow_run
with Flow() as flow:
    create_flow_run(flow_name="xx", project_name="yy")Florian Kühnlenz
02/15/2022, 2:39 PMAnna Geller
Florian Kühnlenz
02/15/2022, 2:51 PM