OBJECT

ChallengeConditionParticipant

A condition participant action that will be taken if an associated condition is satisfied.

link GraphQL Schema definition

1type ChallengeConditionParticipant {
2
3# The associated condition.
4condition: ChallengeCondition
5
6# The effect that will occur if the condition participant is satisfied.
7effect: ChallengeEffect!
8
9# Final state of the condition participant.
10endState: ChallengeConditionParticipantEndState!
11
12# Unique ID of the condition participant.
13id: ID!
14
15# The user who creates and owns the condition participant.
16owner: User
17
18# Whether or not the condition participant was successfully processed upon
19# condition completion.
20processingState: ChallengeConditionParticipantProcessingState!
21
22}