So, I have a simple query
query GetBoardItems{  
  boards(ids: 7144577487) {  
    items_page(limit: 5) {  
      items {  
        name  
        column_values {  
          text
        }  
      }  
    }  
  }  
}
Which provides me with values of 5 lines in a board. Problem is that I receive null where this column is connected with different board.
e.g:
[
    '006',
    null,
    'number',
    '436911',
    '12/40',
    'Open',
    null,
    null,
    '15 transactions per 24 h',
    'photo',
    '',
    'Owner'
  ]
and all those nulls are values from a different board, there are names of employees, and I wanted to filter that data to get only one’s employee line, but since there is no name, I can’t get only that value.
The only thing I found is a linkedPulseId, that gives me some number, but I still couldn’t find how to get the text value of those mirror columns.

