Hello 👋
Currently trying to pull out some workflow data for a mini dashboard with tasks/statuses/assignees etc.
Query here:
query Boards($ids: [Int]) {
me {
name
}
boards(ids: $ids) {
name
columns {
title
id
type
}
groups {
title
id
}
items {
name
group {
id
}
column_values {
id
value
text
}
}
}
}
Weirdly, the data that comes back both in the Monday Playground and in my local Insomnia calls is correct, but in my Next/Apollo app the data for the column_values is all the same as the first column_value entry, depending whichever item comes first in the call…
Can’t for the life of me work out what is going on, but the difference between local logging (straight from the query response) in node and the local Insomnia response seems odd…?
Have checked for Apollo caching weirdness but it’s serverside and the simplest call possible, so one would think should align with what Insomnia gets back.
Any help would be much appreciated, and let me know if any further info needed - thanks!
Brad