MoveViewResult
The result of a move-view function call.
Execution errors are captured in the error field, in which
case the results field will be None.
On success, the results field will contain the return values of the
move view function, and the error field will be None.
type MoveViewResult {
error: String
results: [JSON!]
}
Fields
MoveViewResult.error ● String scalar
Execution error from executing the move view call.
MoveViewResult.results ● [JSON!] list scalar
The return values of the move view function.
Returned By
moveViewCall query