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 71e74c1 + eb2890e commit 4e4802fCopy full SHA for 4e4802f
src/Endpoints/Stories.php
@@ -40,7 +40,8 @@ public function all(): StoriesData
40
41
for ($i = 2; $i <= $pages; $i++) {
42
$response = $this->client->get('spaces/'.$this->spaceId.'/stories', [
43
- 'page' => $i
+ 'page' => $i,
44
+ 'per_page' => '100' // max allowed by API
45
]);
46
47
$stories = array_merge($stories, $response->getBody()['stories']);
0 commit comments