Labels
Maintains a catalog of labels available in a repository, enabling effective categorization and filtering of issues and pull requests.
View-Specific Information
Select
The add-in uses the GitHub API to process WHERE clause conditions that are built with the following column and operators:
- Name supports the '=,IN' comparison operators.
For example, the following queries are processed server-side:
SELECT * FROM [Labels]
SELECT * FROM [Labels] WHERE [Name] = 'Val1'
The add-in processes other filters client-side within the add-in.
The add-in uses the GitHub API to process ORDER BY clause conditions that are built with the following columns:
- Name
- CreatedAt
SELECT * FROM [Labels] ORDER BY [Name]
SELECT * FROM [Labels] ORDER BY [CreatedAt]
The add-in uses client-side processing when ordering by any other columns. This impacts performance.
Columns
Name | Type | References | OrderBySupport | Description |
Id [KEY] | String | A unique identifier for the label within the repository. | ||
Name | String | The name of the label, used to categorize issues and pull requests. | ||
Description | String | A short summary explaining the purpose or usage of the label. | ||
Color | String | The hexadecimal color code representing the label's appearance. | ||
IsDefault | Bool | Indicates whether this label is one of the repository's default labels. | ||
ResourcePath | String | The relative HTTP path to access the label within the repository. | ||
Url | String | The full HTTP URL to directly access the label. | ||
UpdatedAt | Datetime | The date and time when the label was most recently updated. | ||
CreatedAt | Datetime | The date and time when the label was originally created. |