Releases
Lists information about the different releases of a repository.
View-Specific Information
Select
The driver uses the GitHub API to process WHERE clause conditions built with the below columns and operators. The driver processes other filters client-side within the driver.
- TagName supports the '=' comparison operator.
The driver uses the GitHub API to process ORDER BY clause conditions built with the following column. The driver processes ordering by other columns client-side within the driver.
- Name
- CreatedAt
SELECT * FROM [Repository].[Releases] WHERE [Repository].[Releases].[TagName] = 'EXAMPLE'
Columns
Name | Type | References | OrderBySupport | Description |
Id [KEY] | String | The ID of the release. | ||
DatabaseId | Int | Identifies the primary key from the database. | ||
Name | String | The title of the release. | ||
Description | String | The description of the release. | ||
ShortDescriptionHTML | String | A description of the release, rendered to HTML without any links in it. Arguments limit (Int) How many characters to return. The default value is 200. | ||
DescriptionHTML | String | The description of this release rendered to HTML. | ||
IsDraft | Bool | Whether or not the release is a draft. | ||
IsLatest | Bool | Whether or not the release is the latest release. | ||
IsPrerelease | Bool | Whether or not the release is a prerelease. | ||
ViewerCanReact | Bool | Can user react to this subject? | ||
AuthorId | String | The author's ID of the release. | ||
Author | String | The author's login name of the release. | ||
TagId | String | The ID of the release's Git tag. | ||
TagName | String | The name of the release's Git tag. | ||
TagCommitId | String | The ID of the release's Git tag commit. | ||
Url | String | The HTTP URL for this issue. | ||
ResourcePath | String | The HTTP path for this issue. | ||
CreatedAt | Datetime | Identifies the date and time when the object was created. | ||
PublishedAt | Datetime | Identifies the date and time when the release was created. | ||
UpdatedAt | Datetime | Identifies the date and time when the object was last updated. |