So, I’ve been attempting to build a better dashboard so that I can view multiple stats and progress across multiple projects, however the API complexity limits and overall usability have just stopped me in my tracks. I can’t even do this query without it being 2.5x the complexity limit:
const query = `
query fetchBoards($boardIds: [ID!]!) {
complexity {
before
query
after
reset_in_x_seconds
}
boards(ids: $boardIds) {
id
name
groups {
id
title
items_page(limit: 100) {
items {
column_values(ids: ["status"]) {
text
}
}
}
}
}
}
`;
Either I’m missing something or is the API just completely unusable?