packages/reflow-circuit/lib/graphql/schema/flow.graphql
type FlowConnection { pageInfo: PageInfo! edges: [FlowEdge]} type FlowEdge { node: Flow cursor: String!} type Flow implements Node { id: ID! title: String! passes: Int! pending: Int! failures: Int! combinations(after: String, first: Int, before: String, last: Int): CombinationConnection # Tests Status of the flow result: Result! # Status of the flow Completion status: Status! totalNumberOfFlowCombinations: Int! currentNumberOfFlowCombinations: Int! DAG: [String] result: Result!} input FlowInput { id: FlakeID! title: String! totalCombinations: Int! DAG: [String]}