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 9a2b257 + e1b022b commit 71ab3e8Copy full SHA for 71ab3e8
src/QueryBuilder.php
@@ -137,14 +137,14 @@ public function build(): array
137
138
if (null !== $this->pit) {
139
if (is_string($this->pit)) {
140
- $query['pit'] = ['id' => $this->pit];
+ $query['body']['pit'] = ['id' => $this->pit];
141
} else {
142
- $query['pit'] = $this->pit;
+ $query['body']['pit'] = $this->pit;
143
}
144
145
146
if (null !== $this->searchAfter) {
147
- $query['search_after'] = $this->searchAfter;
+ $query['body']['search_after'] = $this->searchAfter;
148
149
150
if (null !== $this->source) {
0 commit comments