Get value from a mirror field in the API

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?

Hello there @alexandra-melo and welcome to the community!

I hope you like it here :muscle:

The query looks OK. What type of column is the mirror column mirroring?

Also, does the user whose API token is being used have access to the board and items from which the mirror column is taking the data?

Looking forward to hearing from you!

Cheers,
Matias