Tags
Get a collection of tags.
Table-Specific Information
SELECT
The adapter uses the Monday API to process some of the filters. The adapter processes other filters client-side within the adapter. 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.
- IsPrivate supports the '=' comparison operator.
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')
INSERT
The following inputs can be used in INSERT statements:
Name, BoardId
INSERT INTO Tags (Name) VALUES ('TestTagName')
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | False |
The tag's unique identifier. | |
Color | String | False |
The tag's color. | |
Name | String | False |
The tag's name. | |
IsPrivate | Bool | False |
Whether or not the tag is private. | |
BoardId | String | False |
A private board id to filter by or create a tag at (not needed for public boards). |