OBJECT

MakePredictionPayload

Payload for making a prediction.

link GraphQL Schema definition

1type MakePredictionPayload {
2
3# If present, there was an error with the request.
4error: MakePredictionError
5
6# The created or updated Prediction.
7prediction: Prediction
8
9}