relationship in QTable
-
how to show the attribute of a relationship in the QTable when using the restfull pattern?
{
“data”: {
“type”: “countries”,
“id”: “2”,
“attributes”: {
“code”: “BE”,
“name”: “Belgium”
},
“relationships”: {
“currency”: {
“data”: {
“type”: “currencies”,
“id”: “1”
},
“links”: {
“self”: “/currencies/1”
}
},
“cultures”: {
“data”: [
{
“type”: “cultures”,
“id”: “2”
},
{
“type”: “cultures”,
“id”: “3”
}
],
“links”: {
“self”: “/cultures?country_id=2”
}
}
},
“links”: {
“self”: “/countries/2”
}
},
“included”: [
{
“type”: “currencies”,
“id”: “1”,
“attributes”: {
“code”: “EUR”,
“name”: “Euro”
},
“links”: {
“self”: “/currencies/1”
}
},
{
“type”: “cultures”,
“id”: “2”,
“attributes”: {
“code”: “nl-BE”,
“name”: “Dutch (Belgium)”
},
“links”: {
“self”: “/cultures/2”
}
},
{
“type”: “cultures”,
“id”: “3”,
“attributes”: {
“code”: “fr-BE”,
“name”: “French (Belgium)”
},
“links”: {
“self”: “/cultures/3”
}
}
]
}