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.
1 parent 0e5edde commit ff45f82Copy full SHA for ff45f82
src/Services/FileMakerConnection.php
@@ -216,6 +216,12 @@ public function duplicateRecord(FMBaseBuilder $query): array
216
*/
217
public function performFind(FMBaseBuilder $query)
218
{
219
+ // If limit hasn't been specified we should set it to be very high to bypass FM's default 100-record limit
220
+ // This more closely matches Laravel's default behavior
221
+ if (!isset($query->limit)) {
222
+ $query->limit = 1000000000000000000;
223
+ }
224
+
225
// if there are no query parameters we need to do a get all records instead of a find
226
if (empty($query->wheres)) {
227
return $this->getRecords($query);
0 commit comments