Forks
Provides metadata about forks created from a repository, including fork ownership and purpose, to support collaboration and innovation.
View-Specific Information
Select
The add-in uses the GitHub API to process WHERE clause conditions that are built with the following columns and operators:
- HasIssuesEnabled supports the '=' comparison operator.
- IsLocked supports the '=' comparison operator.
- IsPrivate supports the '=' comparison operator.
- Visibility supports the '=' comparison operator.
For example, the following queries are processed server-side:
SELECT * FROM [Forks]
SELECT * FROM [Forks] WHERE [HasIssuesEnabled] = true
SELECT * FROM [Forks] WHERE [IsLocked] = true
SELECT * FROM [Forks] WHERE [IsPrivate] = true
SELECT * FROM [Forks] WHERE [Visibility] = 'PRIVATE'
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
- StargazerCount
- CreatedAt
- UpdatedAt
- PushedAt
SELECT * FROM [Forks] ORDER BY [Name]
SELECT * FROM [Forks] ORDER BY [StargazerCount]
SELECT * FROM [Forks] ORDER BY [CreatedAt]
SELECT * FROM [Forks] ORDER BY [UpdatedAt]
SELECT * FROM [Forks] ORDER BY [PushedAt]
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 | The unique identifier assigned to the fork. | ||
ForkOwnerLogin | String | The login name of the user or organization that owns the fork. | ||
Name | String | The name of the fork. | ||
Description | String | A brief description of the fork. | ||
DescriptionHTML | String | The HTML version of the fork description. | ||
HasIssuesEnabled | Bool | Indicates if the 'Issues' feature is enabled for this fork. | ||
IsLocked | Bool | Indicates whether the fork is locked (true or false). | ||
IsPrivate | Bool | Identifies whether the fork is private (true) or public (false). | ||
Visibility | String | The visibility level of the fork (for example, 'public', 'private').
The allowed values are PRIVATE, PUBLIC, INTERNAL. | ||
ForkCount | Int | The total number of forks that this fork has in the entire network. | ||
StargazerCount | Int | The number of stargazers who have starred this fork. | ||
ForkingAllowed | Bool | Indicates whether forking is allowed for this fork. | ||
Url | String | The HTTP URL that points to the fork. | ||
MirrorUrl | String | The mirror URL for this fork, if applicable. | ||
CreatedAt | Datetime | The date and time when the fork was created. | ||
UpdatedAt | Datetime | The date and time when the fork was last updated. | ||
PushedAt | Datetime | The date and time when the fork was last pushed to. |