Skip to main content

Mirror column value

  • February 15, 2024
  • 2 replies
  • 238 views

I am trying to fetch mirror column values in API playground.
Can someone help me with how to write query to fetch mirror column values?

2 replies

  • Participating Frequently
  • February 16, 2024
{
items {
 column_values {
   ... on MirrorValue {
    display_value //this is the text value of the column. There is no true 'value' like other columns.
   }
 }
}
}

Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • February 18, 2024

Thank you @anon29275264 !!!