-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 13 replies
-
@NickB-30 Thanks for your question. I think your issue is related to #1789 and FAQ#language-card-related-questions. I will, however, also answer it here. I checked your username's stats card and believe the results are correct as you don't have any repositories from which GitHub can report language results. You can check this out yourself 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": "NickB-30"} The public Vercel instance cannot access your private repositories, so it can not show language results. If you want the result for your private repositories to show up you can create your own vercel instance (see https://github.com/anuraghazra/github-readme-stats#deploy-on-your-own-vercel-instance). |
Beta Was this translation helpful? Give feedback.
-
My language card is not fetching data |
Beta Was this translation helpful? Give feedback.
@NickB-30 Thanks for your question. I think your issue is related to #1789 and FAQ#language-card-related-questions. I will, however, also answer it here. I checked your username's stats card and believe the results are correct as you don't have any repositories from which GitHub can report language results. You can check this out yourself by using the following query in the graphql explorer: