Skip to content

Instantly share code, notes, and snippets.

@jephjohnson
Created January 16, 2017 05:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jephjohnson/7c0a55924dc77f61e061d13cc6c29f97 to your computer and use it in GitHub Desktop.
Save jephjohnson/7c0a55924dc77f61e061d13cc6c29f97 to your computer and use it in GitHub Desktop.
{
"data": [
{
"id": "1",
"type": "posts",
"attributes": {
"title": "First post"
},
"relationships": {
"comments": {
"data": [
{
"id": "5",
"type": "comments"
}
]
}
}
},
{
"id": "2",
"type": "posts",
"attributes": {
"title": "Second post"
},
"relationships": {
"comments": {
"data": [
{
"id": "3",
"type": "comments"
}
]
}
}
}
],
"included": [
{
"id": "3",
"type": "comments",
"attributes": {
"body": "first!"
}
},
{
"id": "5",
"type": "comments",
"attributes": {
"body": "inane drivel"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment