INTERFACE

RepositoryInfo

A subset of repository info.

link GraphQL Schema definition

  • interface RepositoryInfo {
  • # Identifies the date and time when the object was created.
  • createdAt: DateTime!
  • # The Ref associated with the repository's default branch.
  • defaultBranchRef: Ref
  • # The description of the repository.
  • description: String
  • # The description of the repository rendered to HTML.
  • descriptionHTML: HTML!
  • # Indicates if the repository has issues feature enabled.
  • hasIssuesEnabled: Boolean!
  • # Indicates if the repository has wiki feature enabled.
  • hasWikiEnabled: Boolean!
  • # The repository's URL.
  • homepageURL: String
  • # Identifies if the repository is a fork.
  • isFork: Boolean!
  • # Indicates if the repository has been locked or not.
  • isLocked: Boolean!
  • # Identifies if the repository is a mirror.
  • isMirror: Boolean!
  • # Identifies if the repository is private.
  • isPrivate: Boolean!
  • # The license associated with the repository
  • license: String
  • # The reason the repository has been locked.
  • lockReason: RepositoryLockReason
  • # The repository's original mirror URL.
  • mirrorURL: String
  • # The name of the repository.
  • name: String!
  • # The User owner of the repository.
  • owner: RepositoryOwner!
  • # The HTTP path for this repository
  • path: URI!
  • # Identifies when the repository was last pushed to.
  • pushedAt: DateTime
  • # Identifies the date and time when the object was last updated.
  • updatedAt: DateTime!
  • # The HTTP url for this repository
  • url: URI!
  • }