You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> DynamoDB can only handle result set up to 1MB per call, so we have to paginate if there are more results. see [Paginating the Results](#paginating-the-results) for more details.
209
229
210
230
#### Retrieving a model
@@ -230,6 +250,18 @@ If the model has sort key and `sortKeyDefault` is defined:
230
250
User::find('[email protected]'); // Partition key. sortKeyDefault will be used for Sort key.
231
251
```
232
252
253
+
You also can modify the behavior of the `find()` method to fit your needs. For example:
0 commit comments