Questions tagged [dynamoose]

Dynamoose is a modeling tool for Amazon's DynamoDB for Node.js, inspired by Mongoose.

Summary

Dynamoose is a modeling tool for Amazon's DynamoDB NoSQL database service, written in for use with . Although inspired by , there are some key differences between the two packages due to differences between and .

Questions

Questions tagged with should not be tagged with .

Questions about server administration can be asked on https://dba.stackexchange.com.

Installation

$ npm i dynamoose

Resources

93 questions
0
votes
1 answer

DynamoDB: Dynamoose update ($PUT default behaviour) not working as expected?

I'm trying to implement a PUT (update) API endpoint, passing the primary key of an element as a parameter in the path and the attributes I want to update as parameter in the body. But is not working as expected, instead of updating the attributes of…
rodrunner
  • 1,860
  • 4
  • 23
  • 34
-1
votes
1 answer

Dynamodb query between 2 dates returns not supported error

I'm trying to query some data between 2 dates from dynamoDb using dynamoose with nestjs. I have a history table with this schema: const HistorySchema = new Schema( { messageId: { type: String, hashKey: true, }, sendAt: { …
NganCun
  • 155
  • 1
  • 4
  • 13
-1
votes
2 answers

Dynamoose - How to Query Two GSI on the same Key?

I have a key in dynamo that has two Global Secondary Indexes with different range keys. Like this: const productSchema = new Schema( { productCategory: { type: String, index: [{ global: true, rangeKey:…
Bryce
  • 41
  • 2
  • 7
1 2 3 4 5 6
7