Is there a way to extract only the data array from the observable response? I'm interested in retrieving the values of cat_id, cat_name, and cat_description, but not the sql_types array.
{
"code": 0,
"message": "",
"data": [
{
"cat_name": "Topografía",
"cat_description": "Servicios de topografía en general",
"cat_id": 1
},
{
"cat_name": "Estructuras hormigón",
"cat_description": "subcontratas de estructuras de hormigón ",
"cat_id": 3
}
],
"sqlTypes": {
"cat_name": 12,
"cat_description": 12,
"cat_id": 4
}
}