Slide 66
Slide 66 text
{
"posts": [{
"id": 1,
"title": "First post",
"body": "Body of the first post",
"author_id": 1,
}, {
"id": 2,
"title": "Second post",
"body": "Body of the second post",
"author_id": 2
}, {
"id": 3,
"title": "Third post",
"body": "Body of the third post",
"author_id": 1
}],
"authors": [
{ "id": 1, "name": "Yehuda Katz" },
{ "id": 2, "name": "Tom Dale" }
]
}
MY OPINION.