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
}
}
}
}
}
}