Clarkie

Results 29 comments of Clarkie

There were conflicts, I tried to resolve them but the tests are still failing. I'll have a look over coffee in the morning.

Hi @moraneva, As far as I know there isn't a "standard" when it comes to naming dynamodb tables. You can modify the table name using a helper: ``` const eventTable...

Happy to take a PR if you have time? Thanks Clarkie

@naerbnic I've never used Typescript, can you submit a PR? Thanks

I'd say node context only. I've only ever seen a use for it in node. Surely the AWS credentials would be compromised if you put them in the browser?

You can pass an array to the dynogels `create` function. Here's our usage (with https://github.com/andrewoh531/dynogels-promisified and https://github.com/lodash/lodash/wiki/FP-Guide): ``` function bulkCreate(orders) { return orderTable .createAsync(orders) .then(map('attrs')); } function create(order) { return...

Hi @armiiller, I wonder if it's the sdk upgrade?

Are you saying that if you have a schema like this and create an item without any children then the children property doesn't exist? This is in line with the...

At the minute dynogels replicates the behaviours of dynamoDB. The underlying database doesn't allow empty strings (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) so I'm not sure it'd be a good idea to support that here.

Yeah, sounds good. I'd be happy to look at a PR that implements this. Thanks