I have a board with several views.
I have one view that has filters to show the items that I want.
I’m trying to figure out how to make the query so that it will return all the items in that view.
The following query will return the names of all the view, and it will return all the items on the board, though the people who set up the board aren’t programmers, and apparently don’t know how to name fields, and so I’m honestly not sure how to pull the exact fields that I want yet.
{
query: boards(ids: 111111111111) {
name
views {
id
name
}
items_page {
items {
name
column_values {
id
text
}
}
}
}
}