Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🤖🚨 GitHub’s GraphQL Schema changes detected #10

Merged
merged 2 commits into from
Dec 30, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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