Object GitHub::PackageVersion

Information about a specific package version.

Fields

files(orderBy: PackageFileOrder = {field: CREATED_AT, direction: ASC}, after: String, before: String, first: Int, last: Int): PackageFileConnection!

List of files associated with this package version

Args

orderBy: PackageFileOrder = {field: CREATED_AT, direction: ASC}

Ordering of the returned package files.

after: String

Returns the elements in the list that come after the specified cursor.

before: String

Returns the elements in the list that come before the specified cursor.

first: Int

Returns the first n elements from the list.

last: Int

Returns the last n elements from the list.

id: ID!

package: Package

The package associated with this version.

platform: String

The platform this version was built for.

preRelease: Boolean!

Whether or not this version is a pre-release.

readme: String

The README of this package version.

release: Release

The release associated with this package version.

statistics: PackageVersionStatistics

Statistics about package activity.

summary: String

The package version summary.

version: String!

The version string.

Uses

Package.latestVersion

Package.version

PackageFile.packageVersion

PackageTag.version

PackageVersionConnection.nodes

PackageVersionEdge.node

Node