Skip to content

Instantly share code, notes, and snippets.

@josefaidt
Created January 10, 2020 00:26
Show Gist options
  • Save josefaidt/7a6db00faa74c887ea9c704f116a8f33 to your computer and use it in GitHub Desktop.
Save josefaidt/7a6db00faa74c887ea9c704f116a8f33 to your computer and use it in GitHub Desktop.
Gets file contents from a repository folder
{
repository(name: "josefaidt.github.io", owner: "josefaidt") {
folder: object(expression: "master:app/content/pages") {
... on Tree {
entries {
oid
object {
... on Blob {
text
}
}
name
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment