I used the below script to read from a specific board and worked great.
Recently the admin user for good reasons, duplicated the board and used the existing for other purposes. The new duplicated board has been made as the new Board Default.
query { boards (ids: 123456789) { name id items (limit: 300, page: 1) { name column_values{id type text }} }}
Now, the script retrieves data from old board. How can I change the script to read from teh new specific view?
The issue is that Board B has the same Board ID with Board A, just different view number which is why I am still reading board A data. Basically, the user duplicated tab on the same board (sorry - didnt clarify earlier)
You don’t have a different board. You just have a different view of the same board.
If so, the data is the same one in both, the only difference is that one of the views will show some information and hide some information, and the second view will show different information. But in the backend, the board data is the same.
So using the API, you will get the same information from both views because the API works with our database and the data from the board is the same in both views.