-
Describe the bug Expected behaviour Screenshots / Live demo link (paste the github-readme-stats link as markdown image) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 18 replies
-
@fqrtg14 Thanks for your issue. I checked your account, and it looks like the results shown on the card are correct. You can see this in action by using the following query in the graphql explorer: query userInfo($login: String!) {
user(login: $login) {
# fetch only owner repos & not forks
repositories(ownerAffiliations: OWNER, isFork: false, first: 100) {
nodes {
name
languages(first: 10, orderBy: {field: SIZE, direction: DESC}) {
edges {
size
node {
color
name
}
}
}
}
}
}
} You can then use the following in the query variables field. {"login": "fqrtg14"} There are only two repositories that show up, namely |
Beta Was this translation helpful? Give feedback.
-
Hello, thank you for this discussion!
My Github stats (with private repos included) are appearing correctly with my Vercel instance.https://github-readme-stats-flame-phi.vercel.app/api?username=emjose&count_private=true
My top languages card is still blank.https://github-readme-stats-flame-phi.vercel.app/api/top-langs/?username=emjose
|
Beta Was this translation helpful? Give feedback.
@fqrtg14 Thanks for your issue. I checked your account, and it looks like the results shown on the card are correct. You can see this in action by using the following query in the graphql explorer:
You can then use the following in the query variables field.
…