AddEventResultRequest
Input type for adding an event result. The result field is the time, score, or other value that the user achieved in the event, ranked from low to high. The userData field is a Struct that can contain any additional data that should be stored with the event user object. The roundUserData field is a Struct that can contain any additional data that should be stored with the user result for the round. If the event user already exists the data field will be updated. If the user already has a result for the round, the result and data fields will be updated.
input AddEventResultRequest {
event: EventRequest!
clientUserId: Uint64!
result: Uint64!
userData: Struct!
roundUserData: Struct!
}