OBJECT

ChannelChallengeParticipant

A participant contributing to a challenge and associated information.

link GraphQL Schema definition

1type ChannelChallengeParticipant {
2
3# The bits this participant has contributed to a challenge.
4bits: Int!
5
6# The Challenge this participant contributed to.
7challenge: ChannelChallenge
8
9# Time when participant first contributed to the challenge.
10firstContributedAt: Time!
11
12# id of the participant in the challenge.
13id: ID!
14
15# Time when participant last contributed to the challenge.
16lastContributedAt: Time!
17
18}