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 04902ce commit 3af1e6fCopy full SHA for 3af1e6f
README.md
@@ -757,9 +757,10 @@ It also sets the column "customer_id" on "create" to "12" and removes the column
757
758
You may use the "joinLimits" and "pageLimits" middleware to prevent database scraping.
759
The "joinLimits" middleware limits the table depth, number of tables and number of records returned in a join operation.
760
+If you want to allow 5 direct direct joins with a maximum of 25 records each, you can specify:
761
- 'joinLimits.depth' => 2,
762
- 'joinLimits.tables' => 3,
+ 'joinLimits.depth' => 1,
763
+ 'joinLimits.tables' => 5,
764
'joinLimits.records' => 25,
765
766
The "pageLimits" middleware limits the page number and the number records returned from a list operation.
0 commit comments