Hi there!
I’m migrating a Monday API python wrapper to work on the 2023-10 version of the API, and I found out that the field items doesn’t accept the item ID anymore!
How is anyone supposed to find data about a specific item using only the item ID?
For example, this query gets the item updates, works perfectly on 2023-04:
query{
boards (ids: %s){
items(ids: %s){
updates (limit: %s) {
id,
body,
created_at,
updated_at,
creator {
id,
name,
email
},
assets {
id,
name,
url,
file_extension,
file_size
},
replies {
id,
body,
creator{
id,
name,
email
},
created_at,
updated_at
}
}
}
}
}
but now, on 2023-10, the following doesn’t work anymore:
query{
boards (ids: %s){
items_page (){
items(ids: %s){
updates (limit: %s) {
id,
body,
created_at,
updated_at,
creator {
id,
name,
email
},
assets {
id,
name,
url,
file_extension,
file_size
},
replies {
id,
body,
creator{
id,
name,
email
},
created_at,
updated_at
}
}
}
}
}
}