OBJECT
Deployment
Represents triggered deployment instance.
link GraphQL Schema definition
- type Deployment implements Node {
- # Identifies the commit sha of the deployment.
- Commit! :
- # Identifies the date and time when the object was created.
- DateTime! :
- # Identifies the user who triggered the deployment.
- User! :
- ID! :
- # Identifies the repository associated with the deployment.
- Repository! :
- # A list of statuses associated with the deployment.
- #
- # 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): DeploymentStatusConnection ( :
- }