Skip to content

Commit

Permalink
feat: Field sshUrl was added to object type Repository (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
octokitbot authored and gr2m committed Dec 30, 2017
1 parent 21349b5 commit a6bd505
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1706,6 +1706,9 @@ interface GitObject {
# A Git object ID.
scalar GitObjectID

# Git SSH string
scalar GitSSHRemote

# Information about a signature (GPG or S/MIME) on a Commit or Tag.
interface GitSignature {
# Email used to sign this object.
Expand Down Expand Up @@ -5876,6 +5879,9 @@ type Repository implements Node, ProjectOwner, RepositoryInfo, Starrable, Subscr
limit: Int = 200
): HTML!

# The SSH URL to clone this repository
sshUrl: GitSSHRemote!

# A list of users who have starred this starrable.
stargazers(
# Returns the elements in the list that come after the specified global ID.
Expand Down
26 changes: 26 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5643,6 +5643,22 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "sshUrl",
"description": "The SSH URL to clone this repository",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "GitSSHRemote",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "stargazers",
"description": "A list of users who have starred this starrable.",
Expand Down Expand Up @@ -32909,6 +32925,16 @@
"enumValues": null,
"possibleTypes": null
},
{
"kind": "SCALAR",
"name": "GitSSHRemote",
"description": "Git SSH string",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
"name": "TopicConnection",
Expand Down

0 comments on commit a6bd505

Please sign in to comment.