-
Beta Was this translation helpful? Give feedback.
Answered by
rickstaa
Dec 28, 2022
Replies: 1 comment
-
@Deva-1903 Thanks for your question. I checked your results in the GraphQL backend, but the results on the card look correct: query userInfo($login: String!) {
user(login: $login) {
name
login
contributionsCollection {
totalCommitContributions
restrictedContributionsCount
}
}
}
It shows 328 public commits and 19 private commits. The only thing that causes your results not to show up immediately is that we use a 4-hour caching period (see https://github.com/anuraghazra/github-readme-stats#common-options). Further, you must set the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Deva-1903
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Deva-1903 Thanks for your question. I checked your results in the GraphQL backend, but the results on the card look correct:
It shows 328 public commits and 19 private commits. The only thing that causes your results not to show up immediately is that we use a 4-hour caching period (see https://github.com/anuraghazra/github-readme-stats#common-options). Further, you must set the
&count_private=true
variable and need to share private commits on your profile for them to show up on th…