query numBranches()

in plugins/soundcheck-backend-module-branch/src/branchcount.ts [152:158]


          query numBranches($owner: String!, $repo: String!) {
            repository(owner: $owner, name: $repo) {
              refs(first: 0, refPrefix: "refs/heads/") {
                totalCount
              }
            }
          }