INPUT_OBJECT

MakePredictionInput

Input for making a Prediction.

link GraphQL Schema definition

1input MakePredictionInput {
4
2# The unique identifier of the Prediction Event to make the prediction on.
3eventID: ID!
7
5# The unique identifier of the Prediction Outcome to make the prediction on.
6outcomeID: ID!
10
8# The number of points to spend on this Prediction.
9points: Int!
13
11# Client-set identifier for the transaction. This ID should be universally unique.
12transactionID: ID!
14}