My stat counter isn't working. #2753
-
The title describes my issue. I would say for the past 2 months now my stat counter hasn't been displayed correctly. My stats used to show up properly then one day it just started showing zeros and hasn't changed since. What am I doing wrong? Here is the code that I have set for myself:
Here is my GitHub profile for if anyone wants to see what I am seeing: Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
@R5-3600 I checked your profile and the card seems to be correct. You can check the data we receive from GitHub in the GraphQL explorer: query userInfo($login: String!) {
user(login: $login) {
name
login
contributionsCollection {
totalCommitContributions
restrictedContributionsCount
}
repositoriesContributedTo(first: 1, contributionTypes: [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY]) {
totalCount
}
pullRequests(first: 1) {
totalCount
}
openIssues: issues(states: OPEN) {
totalCount
}
closedIssues: issues(states: CLOSED) {
totalCount
}
followers {
totalCount
}
}
} {"login": "R5-3600"} Please deploy your own vercel instance if you want private statistics to show up. |
Beta Was this translation helpful? Give feedback.
Please follow step 6-11 from the step-by-step guide. The video is not up-to-date any more 😅.