OBJECT

Blob

Represents a Git blob.

link GraphQL Schema definition

  • type Blob implements Node, GitObject {
  • # Byte size of Blob object
  • byteSize: Int!
  • id: ID!
  • # Indicates whether the Blob is binary or text
  • isBinary: Boolean!
  • # Indicates whether the contents is truncated
  • isTruncated: Boolean!
  • # The Git object ID
  • oid: GitObjectID!
  • # The Repository the Git object belongs to
  • repository: Repository!
  • # UTF8 text data or null if the Blob is binary
  • text: String
  • }

link Require by

This element is not required by anyone