I tried to follow the guides but can’t get the new query to run in the Playground. Can I get an assist please? Here is the original that works in 2023-07:
query {
boards(ids: 0123456789) {
groups(ids: "groupA") {
items(limit: 99) {
id
name
column_values(
ids: :
"text2"
"text7"
"creation_log"
"item_id5"
"text5"
"dropdown1"
"text31"
"status"
]
) {
title
text
}
subitems {
id
name
column_values(ids: :"checkbox5", "numbers", "numbers7", "numbers9"]) {
title
text
}
}
}
}
}
}
Page 1 / 1
Can you try:
{
boards(ids: 123456789) {
groups(ids: "groupA") {
items_page(limit: 99) {
items {
id
name
column_values(
ids: ["text2", "text7", "creation_log", "item_id5", "text5", "dropdown1", "text31", "status"]
) {
text
}
subitems {
id
name
column_values(ids: ["checkbox5", "numbers", "numbers7", "numbers9"]) {
text
}
}
}
}
}
}
}
Removed the column_values.title as title is not a supported field on column_values. Added the items_page for 2023-10. I did not test it but it should bring you very close.
That makes sense- title was specified in the error, but I couldn’t find mention of it’s demise in the API articles. My python script queries the board and works on the data based on the column title. I’m looking at the New Column Values article but scratching my head. How do I query the column title now in 2023-10?
The column title is a field of the columns structure underneath boards
I get an error on line 3: Expected Name found “”.
How would this work for the subitem titles? Is there any documentation on this?
Ah, ok. Now the query results have two separate lists: one with the titles, and then one with the values. This would mean rewriting all my python code. I also can’t find any documentation on getting at the subitem title.