Slide 59
Slide 59 text
GET /articles?include=author
{
"data": [
{
"type": "articles",
"id": "1",
"attributes": {
"title": "JSON API paints my bikeshed!",
"text": "…"
},
"relationships": {
"author": { "data": { "type": "people", "id": "2" } }
}
},
…
],
"included": [
{
"type": "people",
"id": "2",
"attributes": {
"name": "Dan Gebhard",
"bio": "…",
"imageUrl": "…"
}
},
…
]
}