I ran this query:
{
boards(ids: my-board-id) {
columns {
id
title
}
}
}
As expected, that gave me a list of columns with their id & title.
Among those columns are:
{
"id": "name",
"title": "Name"
},
"id": "contact_phone",
"title": "Phone"
},
{
"id": "contact_email",
"title": "Email"
},
I assumed I could then run a query like:
{
boards(ids: my-board-id) {
items_page {
items {
name
contact_phone
contact_email
}
}
}
}
But it tells me I cannot query “contact_phone” and “contact_email” on type item.
So I have no idea how to retrieve the contact’s name, email, and phone from that board. I’ve spent the last couple hours looking through the documentation but can’t find anything, so here I am.
Thanks in advance.