Starred
Lists starred gists for the authenticated user.
Table-Specific Information
Select
The connector uses the GitHub API to process WHERE clause conditions that are built with the following columns and operators:
- Name supports the '=' comparison operator.
- UpdatedAt supports the '>=' comparison operator.
For example, the following queries are processed server-side:
SELECT * FROM [Starred]
SELECT * FROM [Starred] WHERE [Name] = 'Val1'
SELECT * FROM [Starred] WHERE [UpdatedAt] >= '2023-01-01 11:10:00'
The connector processes other filters client-side within the connector.
Columns
| Name | Type | References | OrderBySupport | Description |
| Id | String | The node ID of the gist. | ||
| Name [KEY] | String | The gist identifier. | ||
| Public | Bool | Indicates whether the gist is public. | ||
| Description | String | The gist description. | ||
| Url | String | The API URL of the gist. | ||
| HtmlUrl | String | The HTML URL of the gist. | ||
| GitPullUrl | String | The git pull URL of the gist. | ||
| GitPushUrl | String | The git push URL of the gist. | ||
| CommitsUrl | String | The API URL for the gist's commits. | ||
| ForksUrl | String | The API URL for the gist's forks. | ||
| CommentsUrl | String | The API URL for the gist's comments. | ||
| CommentsEnabled | Bool | Indicates whether comments are enabled for the gist. | ||
| Comments | Int | The number of comments on the gist. | ||
| CreatedAt | Datetime | The date and time when the gist was created. | ||
| UpdatedAt | Datetime | The date and time when the gist was last updated. | ||
| OwnerLogin | String | The username of the gist owner. |