OBJECT
ChallengeConditionParticipantSummaryByState
A summary of condition participants attached to a particular condition, grouped by state.
link GraphQL Schema definition
1 type ChallengeConditionParticipantSummaryByState { 2 3 # Summary of participants attached to a particular condition in the CANCELED 4 # state. 5 : ChallengeConditionParticipantSummary 6 7 # Summary of participants attached to a particular condition in the 8 # CONDITION_CANCELED state. 9 : ChallengeConditionParticipantSummary 10 11 # Summary of participants attached to a particular condition in the 12 # CONDITION_TIMEOUT state. 13 : ChallengeConditionParticipantSummary 14 15 # Summary of participants attached to a particular condition in the 16 # FAILED_VALIDATION state. 17 : ChallengeConditionParticipantSummary 18 19 # Summary of participants attached to a particular condition in the PENDING state. 20 : ChallengeConditionParticipantSummary 21 22 # Summary of participants attached to a particular condition in the SATISFIED 23 # state. 24 : ChallengeConditionParticipantSummary 25 26 # Summary of participants attached to a particular condition in the TIMEOUT state. 27 : ChallengeConditionParticipantSummary 28 29 # Total count of participants attached to a particular condition. 30 : Int! 31 32 }