We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f33b689 commit 236195aCopy full SHA for 236195a
1 file changed
src/Endpoints/Collections/Points.php
@@ -43,12 +43,15 @@ public function search(SearchRequest $searchParams): Response
43
/**
44
* @throws InvalidArgumentException
45
*/
46
- public function scroll(Filter $filter = null): Response
+ public function scroll(Filter $filter = null, int $limit = null): Response
47
{
48
$body = [];
49
if ($filter) {
50
$body['filter'] = $filter->toArray();
51
}
52
+ if ($limit) {
53
+ $body['limit'] = $limit;
54
+ }
55
return $this->client->execute(
56
$this->createRequest(
57
'POST',
0 commit comments