Questions tagged [vogels]

vogels is a DynamoDB data mapper for node.js.

vogels is a DynamoDB data mapper for node.js.

22 questions
0
votes
1 answer

Secondary Index - ValidationException: The provided starting key is invalid

I use vogels as an object mapper to my DynamoDB, I have a vogels model with the following schema: Stock: { ID: String, (Hash) DateUTC: String (Secondary Index) } if I try to do: const query = Stock.query('VOD.XLON'); and load all of the…
inside
  • 3,047
  • 10
  • 49
  • 75
0
votes
1 answer

On Vogels with dynalite, Requested resource not found

Someone could share information on how to have vogels working dynalite? Here is what I do to instanciate my DB server locally on my computer: import dynalite from 'dynalite'; import packageJSON from '../package.json' // Returns a standard Node.js…
Damien Leroux
  • 11,177
  • 7
  • 43
  • 57
0
votes
1 answer

Vogels DynamoDB error to migrate to newer api

I'm using Vogels DynamoDB data mapper for node.js - and have been having really difficult time getting to work in DynamoDB (on AWS). For DynamoDB local there are NO issues - it sets up the schema and works perfectly in the node.js app. However, when…
Aaron
  • 2,672
  • 10
  • 28
  • 45
0
votes
1 answer

Vogels with DynamoDB hashKey issue

I've been working with Vogels and NodeJS - Vogels handles creating the schema for me in DynamoDB local. It works perfect. For some reason, I'm having problem trying to deploy app in AWS using DynamoDB service. I am getting the…
Aaron
  • 2,672
  • 10
  • 28
  • 45
0
votes
0 answers

SailsJS DynamoDB, sails-dynamodb adapter - create, findOrCreate not working?

I'm trying to migrate a Sails application previously working with Mongo to Node. So far, I've had success with operations: find, findOne and save. But I can't manage to make "create" or "findOrCreate" to work. I'm using the same query from sails…
Raul Nussbaum
  • 79
  • 1
  • 10
0
votes
1 answer

Node MVC app with dynamodb ORM including associations

I want to build a Node.js MVC app. My data is stored in dynamoDB. I'm looking for a suitable framework for this. I'm mainly debating between: Express.js (for the controllers) with vogels as the ORM (for the models), Sails.js with the dynamoDB…
Cz01
  • 68
  • 7
0
votes
1 answer

Node.JS Dynamo DB Vogels KeyCondition Error

I have been working with DynamoDB and the Vogels ORM library. For some reason, I have been receiving an error that I am unable to fix. var BlogPost = vogels.define('BlogPost', { hashKey : 'email', rangeKey : ‘title’, schema : { email :…
Robert Christopher
  • 461
  • 1
  • 6
  • 15
1
2