OBJECT
Release
A release contains the content for a release.
link GraphQL Schema definition
- type Release implements Node, UniformResourceLocatable {
- # Identifies the description of the release.
- String :
- ID! :
- # Identifies the title of the release.
- String! :
- # The HTTP path for this issue
- URI! :
- # Identifies the date and time when the release was created.
- DateTime :
- # List of releases assets which are dependent on this release.
- #
- # Arguments
- # first: Returns the first _n_ elements from the list.
- # after: Returns the elements in the list that come after the
- # specified global ID.
- # last: Returns the last _n_ elements from the list.
- # before: Returns the elements in the list that come before the
- # specified global ID.
- # name: A list of names to filter the assets by.
- (
- Int, :
- String, :
- Int, :
- String, :
- String :
- ): ReleaseAssetConnection!
- # List of releases assets which are dependent on this release.
- #
- # Arguments
- # first: Returns the first _n_ elements from the list.
- # after: Returns the elements in the list that come after the
- # specified global ID.
- # last: Returns the last _n_ elements from the list.
- # before: Returns the elements in the list that come before the
- # specified global ID.
- Int, : String, : Int, : String): ReleaseAssetConnection! ( :
- # The Git tag the release points to
- Ref :
- # The HTTP url for this issue
- URI! :
- }