Skip to main content

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”

}


Hi Keveen,


Thank you for raising this request. To clarify, we do recommend using query_params if you want to narrow a scope of a search, thus using the query_params would retrieve the necessary data. For your request, are you saying that you would expect the query to work the same without using query_params?


Best,

Joseph


Reply