Skip to content

Instantly share code, notes, and snippets.

@fixable11
fixable11 / comment-example.js
Created November 27, 2021 13:54 — forked from nikes/comment-example.js
Dynamoose range and hash key example
var commentSchema = new Schema({
postId: {
type: String,
hashKey: true
},
id: {
type: String,
rangeKey: true,
default: shortId.generate