waigani
waigani

Reputation: 3580

get cursor from MQL query, Freebase

I am trying to get the 'cursor' value returned in a MQL query by following this example. Though my attempt produces the following error:

{
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "invalid",
    "message": "cursor is invalid.",
    "locationType": "other",
    "location": "parameters.cursor"
   }
  ],
  "code": 400,
  "message": "cursor is invalid."
 }
}

Upvotes: 1

Views: 464

Answers (2)

Tom Morris
Tom Morris

Reputation: 10540

In the new API, the starting value for the cursor parameter is null, not the value true like before. Try this

Upvotes: 1

Related Questions