Cursor defines the column that is going to be taken as basis for cursor-based pagination. Example: a = q.Paginate(10).Cursor("id") b = q.Paginate(12).Cursor("-id") You can set "" as cursorColumn to disable cursors.
(cursorColumn string)
| 132 | // |
| 133 | // You can set "" as cursorColumn to disable cursors. |
| 134 | Cursor(cursorColumn string) Result |
| 135 | |
| 136 | // NextPage returns the next results page according to the cursor. It expects |
| 137 | // a cursorValue, which is the value the cursor column had on the last item |
no outgoing calls