Skip to content

Instantly share code, notes, and snippets.

@tjstalcup
Created September 15, 2018 00:51
Show Gist options
  • Save tjstalcup/b001e68114519d6bbd8142f57c562a23 to your computer and use it in GitHub Desktop.
Save tjstalcup/b001e68114519d6bbd8142f57c562a23 to your computer and use it in GitHub Desktop.
hydration explanation
--------------------------------------------------------------------------------
noteid | title | tagName | tagId
--------------------------------------------------------------------------------
1 | my note | work | 123
1 | my note | thinkful | 124
1 | my note | productivity | 125
[{
noteid: 1,
title: "my note",
tagName: "work",
tagId: 123
},
{
noteid: 1,
title: "my note",
tagName: "thinkful",
tagId: 124
},
{
noteid: 1,
title: "my note",
tagName: "productivity",
tagId: 125
}]
[
1:{
title: "my note"
tags: [
{
id: 123,
name: "work"
},
{
id: 124,
name: "thinkful"
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment