We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc4a403 + de7a37b commit ac6fc2fCopy full SHA for ac6fc2f
src/Endpoints/Endpoint.php
@@ -169,8 +169,8 @@ public function limit(int $limit): Endpoint
169
*/
170
public function offset(StartCursor $startCursor): Endpoint
171
{
172
- // toDo
173
- throw HandlingException::instance('Not implemented yet.', compact($startCursor));
+ $this->startCursor = $startCursor;
+ return $this;
174
}
175
176
src/Query/StartCursor.php
@@ -21,4 +21,8 @@ public function __construct(string $cursor)
21
22
$this->cursor = $cursor;
23
24
+
25
+ public function __toString() {
26
+ return $this->cursor;
27
+ }
28
0 commit comments