Stephen Lloyd
11/03/2022, 4:01 AMStephen Lloyd
11/03/2022, 4:03 AMBianca Hoch
11/03/2022, 3:26 PMBianca Hoch
11/03/2022, 3:27 PM{
  task_run (
    where: {
      created: {_lt: "2022-11-30 00:00:00", _gte: "2022-11-01 00:00:00"}, 
      state: {_eq: "Success"}, 
      tenant_id: {_in: ["insert-tenant-id-here"]}}
  ) {
    id,
    flow_run {
      id,
      name,
      flow{
        name,
        created,
        created_by {
          id,
          username
        }
      }
    },
    flow_run_id
  } 
}