Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 542 Bytes

README.md

File metadata and controls

36 lines (25 loc) · 542 Bytes

Data Relations

Board Link: https://excalidraw.com/#json=_vJWGoHe2BuYM0Ry5pu6r,KNB7kbU1HhW76FhQjaLD6Q

Types of Relationships

One:Many or Many:One

UserSchema = {
    _id:        ObjectId(),
    name:       String,
    email:      String,
    password:   String,
    avatar:     String,
}


Post = {
    _id:        ObjectId(),
    title:      String,
    content:    String,
    user:       {
        name:       String,
        avatar:     String,
        _id:        ObjectId(),
    },
}

One:One

Many:Many