Object GitHub::Package

Information for an uploaded package.

Fields

id: ID!

latestVersion: PackageVersion

Find the latest version for the package.

name: String!

Identifies the name of the package.

packageType: PackageType!

Identifies the type of the package.

repository: Repository

The repository this package belongs to.

statistics: PackageStatistics

Statistics about package activity.

version(version: String!): PackageVersion

Find package version by version string.

Args

version: String!

The package version.

versions(orderBy: PackageVersionOrder = {field: CREATED_AT, direction: DESC}, after: String, before: String, first: Int, last: Int): PackageVersionConnection!

list of versions for this package

Args

orderBy: PackageVersionOrder = {field: CREATED_AT, direction: DESC}

Ordering of the returned packages.

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.

Uses

PackageConnection.nodes

PackageEdge.node

PackageVersion.package

Node