Tags
Get a collection of tags.
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.- ID supports the '=, IN' operators.
- IsPrivate supports the '=' operator.
SELECT
SELECT * FROM Tags WHERE IsPrivate = true
SELECT * FROM Tags WHERE IsPrivate = false
SELECT * FROM Tags WHERE ID = '13327214'
SELECT * FROM Tags WHERE ID IN ('13327214','13327217')
Columns
Name | Type | References | Description |
Id [KEY] | Int | The tag's unique identifier. | |
Color | String | The tag's color. | |
Name | String | The tag's name. | |
IsPrivate | Bool | Whether or not the tag is private.
The default value is false. |