Help with switch of API Version 2023-07 to 2024-01

I need help! Let me start by saying…I’m not a coder, I’ve taught myself to code and to date its work!

This returns all the information I needed - version 2023-07:


:point_up: The information I need is
id: ‘mirror470’,
text: ‘5998586381’,

Using the new version 2024-01, this doesn’t return the information I need and I’m struggling to understand how I get the information from a linked ‘mirror’ field.

Hello there @jonathan.gaunt and welcome to the community!

I hope you like it here :muscle:

You can get that information as shown here with a query like this one:

query {
  items (ids:[1234567890]) {
    column_values {
      ... on MirrorValue {
        display_value
      }
      column{
        id
      }
    }
  }
}

Cheers,
Matias