Introducing board type
July 17th, 2022
You can now retrieve the type of the boards using the type field!
There are three different board types:
- Board (Parent board)
- Sub Items board
- Document
{
boards(ids:1234567890){
type
}
}
{
"data": {
"boards": [
{
"type": "board"
}
]
},
"account_id": 1111111
}
{
boards(ids:1234567890){
type
}
}
{
"data": {
"boards": [
{
"type": "sub_items_board"
}
]
},
"account_id": 1111111
}
{
boards(ids:1234567890){
type
}
}
{
"data": {
"boards": [
{
"type": "document"
}
]
},
"account_id": 1111111
}