Hello,
I can’t wrap my head around the new API syntax needed. I am just wanting to query the item by id and return its column values… The following syntax worked fine on the old API.
{user:
boards(ids: ‘id_here’) {
items (ids: [‘id_here’]) {
name
id
column_values {
id
title
value
text
}
}
}';
I can’t seem to get a valid column_values query going now… I’ve looked through the docs and they don’t make sense to me… I think I am doing it right but just get errors back. Can someone please translate that old query above into a new, working format ? I know this is kind of lazy to ask like this but it’s really doing my head in…
Thanks.