-
I am also in the same situation as #1640 how can i solve thanks? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@elax46 Similar to #1640 you also don't seem to have any non-forked public repositories that https://github.com/github/linguist recognises. The only repository for which you should get the 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": "elax46"} This will give the following response: {
"data": {
"user": {
"repositories": {
"nodes": [
{
"name": "custom-brand-icons",
"languages": {
"edges": []
}
},
{
"name": "elax46",
"languages": {
"edges": []
}
}
]
}
}
}
} I think your issue is related to github-linguist/linguist#542 multiple solutions can be found there. To find languages in private repositories, you have to deploy your Vercel instance since we do not have access to those repositories (see https://github.com/anuraghazra/github-readme-stats#deploy-on-your-own-vercel-instance for more information). |
Beta Was this translation helpful? Give feedback.
-
Related to #1789. |
Beta Was this translation helpful? Give feedback.
@elax46 Similar to #1640 you also don't seem to have any non-forked public repositories that https://github.com/github/linguist recognises. The only repository for which you should get the
js
,json
andmd
languages is https://github.com/elax46/custom-brand-icons. But Github does not seem to recognise those files (i.e. there is no language information on the repository). You can check this by using the following syntax in the graphql explorer: