feat(plugins/notable): add indepth mode (#635) [skip ci]
This commit is contained in:
20
source/plugins/notable/queries/commits.graphql
Normal file
20
source/plugins/notable/queries/commits.graphql
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user