You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kristian Karl edited this page Sep 28, 2019
·
1 revision
HasNext
The Websocket message command hasNext is used to ask GraphWalker if there are any elements left to execute in the model. If all stop conditions for the current model are fulfilled, the response will return "false" for the "hasNext" property.
Request
{
"command":"hasNext"
}
Response
If the request was successful "success" will be "true".
{
"success":true,
"hasNext":<If there are more elements to be executed, true will be returned. Otherwise false>,
"command":"hasNext"
}