sails-dynamodb
sails-dynamodb copied to clipboard
Amazon DynamoDB adapter for Waterline / Sails.js
Would it be possible to get support for Sails 1.0 (beta) / Waterline ORM 0.13? Sails team recommends people starting a new project at the moment to adopt Sails 1.0...
The lodash depencency in package.json does not specify a version. Lodash has just released 4.0 which now breaks the adapter. The following error is received. ``` [Error: Must have one...
I tried to do an OR condition and I found no documentation of how do it. Please can any body explain me how to do it and add it to...
Hi there, There is an error in current vogels version (~0.12.0) with BOOL schema type which is using 'N' dynamoDB attribute value instead of 'BOOL' attribute value, I guess probably...
I found the constructor... ```javascript 1058 Model.update(values, vogelsOptions, function (err, res) { ... }); ``` So **values** is my table map and I get an error if I don't include...
Could we have this as an adapter feature? eg. `required: true` [https://github.com/aws/aws-sdk-java/issues/1189](https://github.com/aws/aws-sdk-java/issues/1189)
It seems that sort conditions are not taken into account. In index.js in the Sort section you have this code: ``` var sort = _.keys(options.sort)[0]; if (sort) { query.ascending(); }...
Getting the following warning (node:19150) [DEP0025] DeprecationWarning: sys is deprecated. Use util instead. Running node v8.2.1
I created an attribute = ``` email: { type: "email", required: true, unique: true } ``` And when you run Insert, it does not perform validation to single in the...
I'm trying to use Local Secondary Indexes by adding: `index: 'secondary'` To one of my fields (type 'integer'), unfortunately I'm getting the following error: ``Error creating tables: { [ResourceNotFoundException: Requested...