laravel-dynamodb icon indicating copy to clipboard operation
laravel-dynamodb copied to clipboard

Eloquent syntax for DynamoDB

Results 28 laravel-dynamodb issues
Sort by recently updated
recently updated
newest added

**Describe the bug** Where an accessor exists on a partition key, the key is passed through the accessor prior to query being executed, resulting in queries that can be incorrect....

Double check plz

bug

I am doing a project where multi-auth is necessary. Does this package support laravel multi-auth? even though I set up project environment as multi auth suggests, DynamDB package always getting...

feature request

I kknow that `ItemCount` is 6 hours out of date, but it is useful in some circumstances. $model->itemCount(); // returns 567 Somthing as simple as that?

feature request

**Describe the bug** I have a table with a GSI that has a hash _and_ a range. The GSI is specified in the model, as described. If I do a...

bug
enhancement
help wanted
missing tests

I know this news has been out less than 24 hours 🤣 Wanted to start the conversation around [transactions](https://aws.amazon.com/blogs/aws/new-amazon-dynamodb-transactions/) and if it’s possible to integrate them with Eloquent’s transactions. I...

feature request

Is there any plan or roadmap for supporting first or new / first or create? It would be really nice if we had those methods.

feature request

bot
gotime

count() only counts correctly when scan or query is within 1MB dynamo limit or limit is explicitly set. pagedCount() returns lastEvaluatedKey with count result on this page, if its !=...

missing tests

**Describe the bug** `DynamoDbModel` is no calling `initializeTraits()` method, introduced in 5.7 (https://github.com/laravel/framework/blob/5.7/src/Illuminate/Database/Eloquent/Model.php#L168). Current package constructor implementation: https://github.com/baopham/laravel-dynamodb/blob/963811691313124e7562a02aefdcc31fdbd75e78/src/DynamoDbModel.php#L70-L79 This should be solved, without BC, by just calling the base constructor:...