Hi ,
I want to ask is there any query we can use to get Account from Contact ID
for example
I use below query to get contact from phone
{
“query”: “{items_page_by_column_values (limit: 50, board_id: 1984233816, columns: [{column_id: "contact_phone", column_values: ["14153739914"]}]) { cursor items { id name } } }”
}
then i can get contact id
{
“data”: {
“items_page_by_column_values”: {
“cursor”: null,
“items”: [
{
“id”: “1984234139”,
“name”: “Steven Scott”
}
]
}
},
“account_id”: 28494386
}
How can I get Account information from this Contact ?