Hey,
I have an API that gets some of my board content. In the GraphQL query I’ve set this section
column_values {
column {
title
}
type
text
... on MirrorValue {
display_value
}
which gets me the content for the Mirror Columns, and it works fine for most of them. BUT, I’ve realized that when the content of the mirror column it’s not a text, then it returns “”. (in my case I’m mirroing a Link Column from another board).
Is there something I’m doing wrong? Is it a limitation?
Checking the documentation one can see that the type of “display_value” is “String!” so I’m thinking there’s no way around.