I would like to find the size of the document named “foo” in master branch of boo repository owned by johndoe.
I am using https://docs.github.com/en/graphql/overview/explorer to make the query.
Any suggestion?
CodePudding user response:
{
user(login:"johndoe"){
repository(name:"boo") {
object(expression: "master:foo") {
... on Blob {
byteSize
}
}
}
}
}