BoardViews
Get a board's views.
View-Specific Information
SELECT
The driver uses the Monday API to process some of the filters. The driver processes other filters client-side within the driver. You can turn off the client-side execution of the query by setting SupportEnhancedSQL to false in which case any search criteria that refers to other columns will cause inconsistent data.
- Id supports the '=','IN' comparison operators.
- BoardId supports the '=','IN' comparison operators.
- Type supports the '=' comparison operator.
SELECT * FROM BoardViews WHERE BoardId = '2182296646'
SELECT * FROM BoardViews WHERE Type = 'Chart'
SELECT * FROM BoardViews WHERE BoardId IN ('2182296646', '2181960030')
Columns
Name | Type | References | Description |
Id [KEY] | String | The view's unique identifier. | |
BoardId | String |
Boards.Id | The unique identifier of the board. |
Name | String | The view's name. | |
Settings | String | The view's settings in a string form. | |
Type | String | The view's type. | |
ViewSpecificData | String | Specific board view data (supported only for forms). | |
SourceViewId | String | The view's template id if it was duplicated from another view. |