OBJECT

Gist

A Gist.

link GraphQL Schema definition

  • type Gist implements Node {
  • # Identifies the date and time when the object was created.
  • createdAt: DateTime!
  • # The gist description.
  • description: String
  • id: ID!
  • # The gist name.
  • name: String!
  • # The gist owner.
  • owner: RepositoryOwner
  • # Whether the gist is public or not.
  • public: Boolean!
  • # Identifies the date and time when the object was last updated.
  • updatedAt: DateTime!
  • }