Hello everybody. I’m trying to get the value of a mirror field in the API. I’m trying to bring up all the value fields described in the documentation, display_value, value and text, but they all return null value. I’m doing this query:
query {
boards(ids: [“my id”]) {
name
groups(ids: [“my id group”]) {
title
id
items_page {
items{
id
name
column_values{
column{
title
}
id
value
type
...on MirrorValue{
display_value
value
text
}
}
}
}
}
}
}
Is there anything I should do differently to get this value?