CustomView
Displays project items labeled 'bug,' sorted by label name in ascending order, to facilitate issue tracking.
View-Specific Information
Select
The add-in processes all filters client-side within the add-in. The following query is the only one processed server side:
SELECT * FROM CustomView
Columns
| Name | Type | References | OrderBySupport | Description |
| ItemId [KEY] | String | A unique identifier for the item, used as a primary key. | ||
| Title | String | The text value of the item's title or main heading. | ||
| Assignees | String | The usernames of users assigned to the item, separated by commas if multiple. | ||
| Status | String | The current status of the item, represented by the selected option from a predefined list. | ||
| Labels | String | A comma-separated list of labels applied to categorize the item. | ||
| Linked pull requests | String | A list of numbers representing pull requests associated with the item. | ||
| Milestone | String | The title of the milestone that the item is associated with, used for tracking progress. | ||
| Repository | String | The full name of the repository, including the owner (for example, owner/repo-name). | ||
| Reviewers | String | The usernames of individuals designated as reviewers for the item. | ||
| CustomText | String | Custom-defined textual content for additional item-specific details. | ||
| CustomNumber | Double | A numeric field allowing custom floating-point values for calculations or metrics. | ||
| CustomDate | Date | A custom-defined date associated with the item, used for deadlines or events. | ||
| CustomSingleSelect | String | The selected value from a custom single-choice dropdown field. | ||
| CustomIteration | String | The title of the iteration or sprint associated with the item. |