I don’t think I am doing anything to complex. I have a board that I want to bring in to Power BI. The board has a few columns that are native to that board. I can get the data from those columns no problem. The issue lies when I am trying to get the data from a lookup table and a few mirror columns that pertain to the lookup. I have followed a few other posts on the forum but noting is working like it should. I have a few screen shots below to maybe help explain what I am working with.
Main Board:
Secondary Board:
Lookup field:
Mirror Fields:
Can someone point me in the right direction? Right now this is what I have for my API call in the API playground:
{
boards(ids: :12345678910, 98765432101]) {
items_page(limit: 100) {
cursor
items {
id
name
column_values {
column {
title
}
text
... on BoardRelationValue {
column {
title
}
display_value
}
... on MirrorValue {
column {
title
}
display_value
}
}
}
}
}
}
As far as the Power BI side I am using This Topic as my example.
Am I on the right track?