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
- DateTime! :
- # Global opaque identifier to meet Node contract
- 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
- (
- String, :
- String, :
- QueryFilter, :
- Int :
- ): EntityConnection!
- # Repository that has this version
- Repository! :
- # Domain-specific repository version identifier.
- # For git this will be commit id
- String! :
- }