-
Notifications
You must be signed in to change notification settings - Fork 116
Rest: hasNext
Kristian Karl edited this page Sep 28, 2019
·
1 revision
The Rest call hasNext
queries the service if there are any more elements to fetch. If yes, then the fulfillment
of the stop conditions has not yet been reached.
GET Request
http://service-host:8887/graphwalker/hasNext
Response
If the request was successful "result" will be "ok". If there are more elements to get, "hasNext" will be "true".
{
"result":"ok",
"hasNext":"true"
}
From a Linux terminal, using curl:
curl http://localhost:8887/graphwalker/hasNext
{"result":"ok","hasNext":"true"}