OBJECT

ChallengeConditionParticipantSummaryByState

A summary of condition participants attached to a particular condition, grouped by state.

link GraphQL Schema definition

1type ChallengeConditionParticipantSummaryByState {
2
3# Summary of participants attached to a particular condition in the CANCELED
4# state.
5canceled: ChallengeConditionParticipantSummary
6
7# Summary of participants attached to a particular condition in the
8# CONDITION_CANCELED state.
9conditionCanceled: ChallengeConditionParticipantSummary
10
11# Summary of participants attached to a particular condition in the
12# CONDITION_TIMEOUT state.
13conditionTimeout: ChallengeConditionParticipantSummary
14
15# Summary of participants attached to a particular condition in the
16# FAILED_VALIDATION state.
17failedValidation: ChallengeConditionParticipantSummary
18
19# Summary of participants attached to a particular condition in the PENDING state.
20pending: ChallengeConditionParticipantSummary
21
22# Summary of participants attached to a particular condition in the SATISFIED
23# state.
24satisfied: ChallengeConditionParticipantSummary
25
26# Summary of participants attached to a particular condition in the TIMEOUT state.
27timeout: ChallengeConditionParticipantSummary
28
29# Total count of participants attached to a particular condition.
30total: Int!
31
32}