INTERFACE

RepositoryVersion

Represents commit information for a repository. For a git repository this would be commit id

link GraphQL Schema definition

  • interface RepositoryVersion {
  • # Timestamp at which this version is created. Expressed in UTC ISO-8601 format
  • creationTime: DateTime!
  • # Global opaque identifier to meet Node contract
  • id: ID!
  • # Optional Entities with which this RepositoryVersion is associated
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # before: Return records before the given cursor, as per GraphQL
  • # Relay spec
  • # filter: [Not documented]
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • relatedEntities(
  • after: String,
  • before: String,
  • filter: QueryFilter,
  • first: Int
  • ): EntityConnection!
  • # Repository that has this version
  • repository: Repository!
  • # Domain-specific repository version identifier.
  • # For git this will be commit id
  • repositoryVersionId: String!
  • }