Why is my most used languages not showing up? #1892
-
Describe the bug My most used languages aren't showing up with this link. It used to work in the past: Expected behaviour It should display something. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
@ENTPRESTIGIOUS Thanks for your question. I checked your account and it seems that the card is displaying the correct result we receive from the GraphQL API. You can check this out yourself using the following syntax 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
}
}
}
}
}
}
} {"login": "ENTPRESTIGIOUS"} Although you have code repositories, those repositories don't have language information linked to them. It looks like all your repositories only contain binary files or markdown. Those are not recognized by linguists as languages (see github-linguist/linguist#5951). |
Beta Was this translation helpful? Give feedback.
-
i have created a repository in my github but my github profile is not showing languages i used an you please solve this issue for me |
Beta Was this translation helpful? Give feedback.
-
i have created a repository in my github but my github profile is not showing languages i used an you please solve this issue for me |
Beta Was this translation helpful? Give feedback.
@ENTPRESTIGIOUS Thanks for your question. I checked your account and it seems that the card is displaying the correct result we receive from the GraphQL API. You can check this out yourself using the following syntax in the graphql Explorer:
Although…