Last active
June 17, 2021 19:11
-
-
Save ashdavies/456b60ad1bb00286480fb46d4a5798be 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 Events { | |
repository(owner: "...", name: "...") { | |
events: object(expression: "HEAD:...") { | |
... on Tree { | |
entries { | |
data: object { | |
... on Blob { | |
oid | |
text | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment