OBJECT
ChannelChallengeParticipant
A participant contributing to a challenge and associated information.
link GraphQL Schema definition
1 type ChannelChallengeParticipant { 2 3 # The bits this participant has contributed to a challenge. 4 : Int! 5 6 # The Challenge this participant contributed to. 7 : ChannelChallenge 8 9 # Time when participant first contributed to the challenge. 10 : Time! 11 12 # id of the participant in the challenge. 13 : ID! 14 15 # Time when participant last contributed to the challenge. 16 : Time! 17 18 }