feat(plugins/notable): add indepth mode (#635) [skip ci]

This commit is contained in:
Simon Lecoq
2021-11-04 00:24:17 -04:00
committed by GitHub
parent 57d4ebb9eb
commit 5498cdc8c1
5 changed files with 170 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
{
repository(owner: "$owner", name: "$repo") {
...RepoFragment
}
}
fragment RepoFragment on Repository {
name
defaultBranchRef {
name
target {
... on Commit {
id
history(first: 0) {
totalCount
}
}
}
}
}