Hi. I want to get all data from all boards. Now I know how to get all boards and items ids, but what about columns?
I try use this:
query {
boards(ids:XXX) {
id
name
items(ids:XXX) {
name
id
creator {
id
name
}
created_at
column_values {
title
value
text
}
}
}
}
This three fields, is everything what i found here:
- title
- value
- text
And it looks like some of them contain null values. For example, some column values is collection of labels. And some values is calendar date.
How do I get them all?
Thank you.