We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79956de commit b4e144eCopy full SHA for b4e144e
1 file changed
src/Http/Controllers/AbstractRestController.php
@@ -69,7 +69,8 @@ public function destroy($id)
69
*/
70
public function index()
71
{
72
- $cursor = $this->repository->collection($this->collectionHelper->currentPosition(), $this->collectionHelper->pageSize());
+ $cursor = $this->repository->collection($this->collectionHelper->currentPosition(), $this->collectionHelper->pageSize(),
73
+ $this->collectionHelper->query($this->transformer));
74
75
return $this->api->collection($cursor, $this->transformer);
76
}
0 commit comments