Skip to main content

Hi, everyone! I am starting out using the API, and I am having difficulty with a simple script. I am trying to retrieve column values from a board and I keep getting an error: Cannot query field “items” on type “board”.


Is this to do with permissions? Or is my script incorrectly formatted?



query{
boards (ids: XXXX){
items {
column_values (ids: "status", "text" {
title
text
}
}
}
}


Thanks for any help!

hi @aazhughes


Welcome to the community! This query will not work on the current version of the API, you need to use the items_page object. Please refer to https://developer.monday.com/api-reference/reference/items-page


Thank you very much, @basdebruin! Everything is working how I had hoped now.


Thank you, @basdebruin !!!


Reply