Skip to main content

I’m using GraphQL to get a list of all items associated with a board. It is working well.


{

boards(ids: 5193886955) {

name

items_page(limit: 100) {

cursor

items {

id

name

state

}

}

}

}


Returns:


{

“data”: {

“boards”: o

{

“name”: “Technology Project Portfolio”,

“items_page”: {

“cursor”: null,

“items”:

{

“id”: “5699277284”,

“name”: “Oracle TMS Program”,

“state”: “active”

},

etc, etc, etc


I also need to return the current value of “Stage Gate” for each item. When I view the projects/items in Monday.com app, one of the columns listed is stage gate.


I can’t seem to find a field I can add to the GraphQL request to return the stage gate. Any help would be appreciated.

If it is a column (beside the first name column), you return it using column_values on the item.


GraphQL API

Reply