Serverless API Monorepo

DynamoDB

Global Secondary Indexes

namedescriptionpksk
GSI1by sk, filter pkskpk
GSI2by type, filter customgsi2pkgsi2sk
GSI3by ref, filter pkgsi3pkpk

GSI1 is used to swap the partition key and sort key for simple one-to-one and one-to-many relationship queries. It can be used for many-to-many relationships by querying the other side of the relationship.

GSI2 is used to query by type and filter by a custom sort key. It can be used to get all items of a type.

GSI3 is used to query by reference and filter by partition key. It can be used when the sk needs to be unique.

Relationships

one-to-one by partition

one character can have one inventory

typepkskgsi2pk (type)gsi3pk (ref)
Examplepartition#idtype[#id]typeref#id
CharacterCharacter#idCharacter#idCharacterUser#id
InventoryCharacter#idInventoryInventory-

one-to-many by partition

one character can have many connections

typepkskgsi2pk (type)gsi3pk (ref)
Examplepartition#idtype#idtyperef#id
CharacterCharacter#idCharacter#idCharacterUser#id
ConnectionCharacter#idConnection#idConnection-

many-to-many by partition

many books can have many authors and many authors can have many books

bookAuthor contains book specific information about the author

typepkskgsi2pk (type)gsi3pk (ref)
Examplepartition#idtype#idtyperef#id
BookBook#idBook#idBook-
BookAuthorBook#idAuthor#idBookAuthor-
AuthorAuthor#idAuthor#idAuthor-

one-to-many by reference

one user can have many characters

typepkskgsi2pk (type)gsi3pk (ref)
Examplepartition#idtype#idtyperef#id
UserUser#idUser#idUser-
CharacterCharacter#idCharacter#idCharacterUser#id

one-to-one by reference

this is used to force uniqueness by design with an item that has a id

one character can have one unique name

typepkskgsi2pk (type)gsi3pk (ref)
Examplepartition#idtype#idtyperef#id
CharacterCharacter#idCharacter#idCharacterUser#id
NameName#idName#idNameCharacter#id

one-to-one-to-many by partition and reference

this is used to force uniqueness by design with an item

one character can have one roomMember and one room can have many roomMembers

typepkskgsi2pk (type)gsi3pk (ref)
Examplepartition#idtype[#id]typeref#id
CharacterCharacter#idCharacter#idCharacterUser#id
RoomMemberCharacter#idRoomMemberRoomMemberRoom#id
RoomRoom#idRoom#idRoom-

Attributes

namedescriptiondescription
pkmost ids
skmost ids or types
gsi2pktype
gsi2skcustom per type filter
gsi3pkref

Entities

with type attributes

pkskgsi2pk (type)gsi2sk (filter)gsi3pk (ref)
characterIdcharacterIdCharacterbirthdaysub
characterIdconnectionIdConnectionregion
characterIdtypeRoomRequestpriorityId created roomMapId
characterIdtypeRoomMemberroomMapId createdroomId
roomIdroomIdRoomroomMapId created
nameIdnameIdNamenameIdcharacterId

filled example

pkskgsi2pk (type)gsi2sk (filter)gsi3pk (ref)
Character#01Character#01Character20150311T122706Z01
Character#01Connection#01Connectioneu-central-1
Character#01RoomRequest#RoomRequest40#20150311T122706Z#forest
Character#01RoomMember#RoomMemberforest#20150311T122706Z01
Room#01Room#01Roomforest#20150311T122706Z
CharacterName#Ikaros-22299CharacterName#Ikaros-22299CharacterName#Ikaros-2229901

regex

Character Name

const re = /^(?=.{2,20}$)([A-Z][a-z]*(([ '][A-Za-z][a-z]*){1,2})?)$/

rules are:

  • 2-20 chars
  • Start with capital letter
  • up to 3 words
  • Only First Letter Of Word Can Be Capital
  • words need to be separated by space or apostrophe

with 5 number id

const re = /^(?=.{2,20}-.{5}$)([A-Z][a-z]*(([ '][A-Za-z][a-z]*){1,2})?)-\d{5}$/

Install

dynamodb local

docker compose up
sudo chown -R nicho:nicho .docker