Hi,
I’m on migration of a lot of powerby using API Monday.com.
And during my debugging and query’s rebuild (thanks a lot @hbouk ) i see that board_relation send data only if a query param is parsed.
I have the same result with api playground
Blockquote
boards(ids:xxxxx) {
items_page(limit: 100 query_params: {rules: e{column_id: “board_relation”, compare_value: , operator:is_not_empty}]} ) {
cursor
items {
id
name
updated_at
group {
title
}
column_values {
id
text
… on StatusValue {
text
}
… on MirrorValue {
display_value
}
… on FormulaValue {
value
}
… on BoardRelationValue {
display_value
}
column {
title
type
}
Result :
“id”: “board_relation”,
“text”: null,
“display_value”: “12E4S2XD08 : CZ - ThinkCentre M70q Wifi - Gen3 (OS:Win)”,
“column”: {
“title”: “link to Subitems of JMS_Commande”,
“type”: “board_relation”
}
},
{
“id”: “mirror”,
“text”: null,
“display_value”: “WSEM00VA4H”,
“column”: {
“title”: “Mirror”,
“type”: “mirror”
}
but if i query without query param
Blockquote
“id”: “board_relation”,
“text”: null,
“display_value”: “”,
“column”: {
“title”: “link to Subitems of JMS_Commande”,
“type”: “board_relation”
}
},
{
“id”: “mirror”,
“text”: null,
“display_value”: “”,
“column”: {
“title”: “Mirror”,
“type”: “mirror”
}