ItemLabels
Stores labels applied to project items, enabling better categorization and filtering of tasks.
View-Specific Information
Select
The cmdlet uses the GitHub API to process WHERE clause conditions that are built with the following column and operators:
- ItemId supports the '=,IN' comparison operators.
For example, the following queries are processed server-side:
SELECT * FROM [ItemLabels]
SELECT * FROM [ItemLabels] WHERE [ItemId] = 'Val1'
The cmdlet processes other filters client-side within the cmdlet.
Columns
| Name | Type | References | OrderBySupport | Description |
| ItemId [KEY] | String | A unique identifier for the item (for example, issue or pull request) associated with the label. | ||
| Id [KEY] | String | A unique identifier for the label. | ||
| Name | String | The name of the label, used to categorize or tag items. | ||
| Description | String | A brief description providing additional context or purpose for the label. | ||
| Color | String | The hexadecimal color code representing the label's visual appearance. | ||
| IsDefault | Bool | Indicates whether this label is one of the default labels provided by GitHub or custom-created. | ||
| ResourcePath | String | The relative HTTP path to access this label on GitHub. | ||
| Url | String | The full HTTP URL to view this label on GitHub. | ||
| UpdatedAt | Datetime | The date and time when the label was last updated or modified. | ||
| CreatedAt | Datetime | The date and time when the label was initially created. |