Last active
May 20, 2021 10:15
-
-
Save elfenlaid/61d5a72a20278eca948e6e9ff2a5b62c to your computer and use it in GitHub Desktop.
Github Repo's owner query https://docs.github.com/en/graphql/overview/explorer
This file contains 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
{ | |
"owner": "SwiftPackageIndex", | |
"name": "SwiftPackageIndex-Server" | |
} |
This file contains 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
{ | |
"owner": "JohnSundell", | |
"name": "Plot" | |
} |
This file contains 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 ($name: String!, $owner: String!) { | |
repository(name: $name, owner: $owner) { | |
owner { | |
login | |
avatarUrl | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment