BoardViews
The board's views.
Table Specific Information
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. For example, the following queries are processed server side.- BoardId supports the '=, IN' operators.
- Type supports the '=' operator.
SELECT
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 | Long |
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. |