Skip to content

Instantly share code, notes, and snippets.

@alexspeller
Created September 18, 2013 00:02
Show Gist options
  • Save alexspeller/6602540 to your computer and use it in GitHub Desktop.
Save alexspeller/6602540 to your computer and use it in GitHub Desktop.
// embedded
{
post: {
title: "whatever",
comments: [
{
id: 1,
comment: "something"
}
]
}
}
// sideloaded
{
post: {
title: "whatever",
comment_ids: [1]
},
comments: [
{
id: 1,
comment: "something"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment