Created
August 10, 2018 10:01
-
-
Save jcansdale/a41c08cb13632746799e49287bec957e to your computer and use it in GitHub Desktop.
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 { | |
search(first: 100, type: REPOSITORY, query: "VisualStudio") | |
{ | |
nodes | |
{ | |
... on Repository | |
{ | |
nameWithOwner | |
object(oid: "ed204a53a72ce1d54556bfcceda6103b926f3ae5") | |
{ | |
... on GitObject | |
{ | |
commitUrl | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment