Skip to content

Commit

Permalink
feat: Deployment#description (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
octokitbot authored and gr2m committed Jul 7, 2018
1 parent 5612ea0 commit eae0f41
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
6 changes: 6 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1240,6 +1240,9 @@ type Deployment implements Node {
# Identifies the primary key from the database.
databaseId: Int

# The deployment description.
description: String

# The environment to which this deployment was made.
environment: String
id: ID!
Expand Down Expand Up @@ -1270,6 +1273,9 @@ type Deployment implements Node {
# Returns the last _n_ elements from the list.
last: Int
): DeploymentStatusConnection

# Identifies the date and time when the object was last updated.
updatedAt: DateTime!
}

# The connection type for Deployment.
Expand Down
28 changes: 28 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -29139,6 +29139,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "description",
"description": "The deployment description.",
"args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "environment",
"description": "The environment to which this deployment was made.",
Expand Down Expand Up @@ -29271,6 +29283,22 @@
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "updatedAt",
"description": "Identifies the date and time when the object was last updated.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "DateTime",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
}
],
"inputFields": null,
Expand Down

0 comments on commit eae0f41

Please sign in to comment.