Skip to main content

AiReviewProgress

Reached as AiReview.progress. Polled, because interface has no subscription transport.

Backed by every active run for the review. Counts are cells, not rows, because field calls complete independently and concurrent runs may cover different column sets.

type AiReviewProgress {
reviewId: ID!
activeRuns: [AiReviewRun!]!
totalCells: Int!
completedCells: Int!
failedCells: Int!
recentCells: [AiReviewCell!]!
}

Fields​

AiReviewProgress.reviewId ● ID! non-null scalar​

AiReviewProgress.activeRuns ● [AiReviewRun!]! non-null object​

Runs currently executing for the review.

AiReviewProgress.totalCells ● Int! non-null scalar​

Cells expected across activeRuns.

AiReviewProgress.completedCells ● Int! non-null scalar​

Cells that reached a terminal outcome across activeRuns.

AiReviewProgress.failedCells ● Int! non-null scalar​

AiReviewProgress.recentCells ● [AiReviewCell!]! non-null object​

Recently completed cells across activeRuns for the live findings feed.

Member Of​

AiReview object