Last active
April 3, 2020 23:06
-
-
Save veeral-patel/d1e4f8f37085ea5c5e441f35a0afc734 to your computer and use it in GitHub Desktop.
React.js Repo - Homepage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query { | |
repository(owner: "facebook", repo: "react") { | |
owner { | |
login | |
} | |
name | |
usedByCount | |
watchersCount | |
stargazersCount | |
forksCount | |
description | |
url | |
tags { | |
name | |
} | |
commitsCount | |
branchesCount | |
packagesCount | |
releasesCount | |
contributorsCount | |
license { | |
name | |
} | |
languages { | |
name | |
percentage | |
} | |
defaultBranch { | |
name | |
} | |
commits(last: 1) { | |
authors { | |
login | |
} | |
message | |
hash(short: true) | |
pullRequests(last: 1) { | |
id | |
isVerified | |
friendlyTime | |
} | |
} | |
files { | |
name | |
type | |
lastCommit { | |
message | |
friendlyTime | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment