Am I wondering if this is possible using some other method? Graphql errors say I "can’t return items in Board View "
{
boards(ids:[xxxxxxxxxxx]){
views(ids: [xxxxxxxxxxx]){
items
}
}
}
Am I wondering if this is possible using some other method? Graphql errors say I "can’t return items in Board View "
{
boards(ids:[xxxxxxxxxxx]){
views(ids: [xxxxxxxxxxx]){
items
}
}
}
Hi @kevinmarchese,
At this stage, I don’t believe that this is possible. I would guess that this is because there a number of different types of views and some of those don’t show items i.e. a Form view.
I am assuming that you are talking about views that include filters.
If you only have a single column filter, you could use the below:
query
{
items_by_column_values(board_id: boardId, column_id: columnId column_value: columnValue {
id
name
}
}
Or if you have multiple column filters or have multiple values for a column. You would need to create this in your application logic, or potentially make multiple API requests. I would probably recommend filtering the data in your application as this should be faster compared to multiple API requests