-
Describe the bugIts showing me only half of my actual commits. https://github.com/MusaAqeel/MusaAqeel Expected behaviourIt should show all 345 commits, but its only showing around half. Screenshots / Live demo linkNo response Additional contextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
@MusaAqeel Thanks for your question. I checked your profile, and the card is working correctly. You can check this out by using the following syntax in the GraphQL explorer: query userInfo($login: String!) {
user(login: $login) {
name
login
contributionsCollection {
totalCommitContributions
restrictedContributionsCount
}
}
} You can then use the following in the query variables field. {"login": "MusaAqeel"} You can get the private commits to show up using the |
Beta Was this translation helpful? Give feedback.
@MusaAqeel Thanks for your question. I checked your profile, and the card is working correctly. You can check this out by using the following syntax in the GraphQL explorer:
You can then use the following in the query variables field.
You can get the private commits to show up using the
count_private=true
variable. Also, please be aware that we use caching to reduce the server load (see https://github.com/anuraghazra/github-readme-stats#common-options).