anuraghazra / github-readme-stats

:zap: Dynamically generated stats for your github readmes
https://github-readme-stats.vercel.app
MIT License
69.61k stars 23.07k forks source link

Top Languages Not Showing #821

Closed luni-moon closed 3 years ago

luni-moon commented 3 years ago

Dear github-readme-stats Development Team,

Describe the bug First off, I have read all the issues regarding this topic. Anyways, I am having the issue, where the Top Lang’s card will show the card correctly without giving an error, except that it doesn’t show any languages

Expected behavior I expected the languages I most use, to show up, not to have a blank Top Lang Card (Besides the custom title)

Screenshots / Live demo link (paste the github-readme-stats link as markdown image)

A6D889E8-11E3-43E3-B535-F88AA8F937E8 ——

Demo:

Lukas Batema's Top Languages

Best Wishes, Lukas Batema

aang13 commented 3 years ago

You can use this one.Works for me. image

luni-moon commented 3 years ago

You can use this one.Works for me. image

Dear @aang13, I am looking for a fix to the one I want to use, not someone else’s, but thanks for the help.

Best Wishes, Lukas Batema

XynoxTheDev commented 3 years ago

Heyo @anuraghazra, I am also able to reproduce the following issue. In my profile, I can't use/see the Most Used Languages card due there are some issues.

Code:

![image](https://github-readme-stats.vercel.app/api/top-langs/?username=XynoxTheDev&layout=compact&langs_count=8&hide_border=true&title_color=000000&icon_color=000000&text_color=000000&bg_color=ffffff)

Output: Code Format - image

Image Format - image

anuraghazra commented 3 years ago

Hi @Lukas-Batema i think your top langs is empty because

You have 6 repos out of which 4 are forks (we don't count them) and other 2 has no language data. thus your lang card is empty

anuraghazra commented 3 years ago

@XynoxTheDev you only have 2 repos which has no language data.

https://github.com/XynoxTheDev?tab=repositories

luni-moon commented 3 years ago

Dear @anuraghazra, Thanks for the help! Maybe you could count forked repositories in the future? Also, I know you cannot see them, but I have 3 private repositories, with Language Data. If you could allow this feature to see private repositories as well, would be nice! Thank you!

Best Wishes, Lukas Batema

anuraghazra commented 3 years ago

Dear @anuraghazra, Thanks for the help! Maybe you could count forked repositories in the future? Also, I know you cannot see them, but I have 3 private repositories, with Language Data. If you could allow this feature to see private repositories as well, would be nice! Thank you!

Best Wishes, Lukas Batema

There is no way we could see your personal repo data. we can only see what github provides.

Although you can try to self host with your own personal access token that might work.

luni-moon commented 3 years ago

Dear @anuraghazra,

Thanks for the help! Maybe you could count forked repositories in the future? Also, I know you cannot see them, but I have 3 private repositories, with Language Data. If you could allow this feature to see private repositories as well, would be nice! Thank you!

Best Wishes,

Lukas Batema

There is no way we could see your personal repo data. we can only see what github provides.

Although you can try to self host with your own personal access token that might work.

Dear @anuraghazra, So personal repo data counts forks AND private repos? Hmm. I guess I could try. Thanks for the help! I think this issue can be closed, as I understand the problem is on my end and cannot be fixed by you. Thanks once again!

Best Wishes, Lukas Batema

XynoxTheDev commented 3 years ago

@XynoxTheDev you only have 2 repos which has no language data.

https://github.com/XynoxTheDev?tab=repositories

Thanks for the help:smile:

luni-moon commented 3 years ago

Dear @anuraghazra, Thanks for the help! Maybe you could count forked repositories in the future? Also, I know you cannot see them, but I have 3 private repositories, with Language Data. If you could allow this feature to see private repositories as well, would be nice! Thank you! Best Wishes, Lukas Batema

There is no way we could see your personal repo data. we can only see what github provides.

Although you can try to self host with your own personal access token that might work.

Dear @anuraghazra, It worked, thank you so much! I think this issue may be closed now if you so desire! Once again, thank you!

Best Wishes, Lukas Batema


@Lukas-Batema, @PedestriaMC-Network


(Grade 10, JavaScript and Java Programmer, and Front End Web Designer)


Pedestriapedia Official BatemaDevelopment My Portfolio

anuraghazra commented 3 years ago

I hope your confusion is cleared now. feel free to open any issue if you have any other questions. closing this for now. :)

luni-moon commented 3 years ago

I hope your confusion is cleared now. feel free to open any issue if you have any other questions. closing this for now. :)

Dear @anuraghazra, Thanks!

Best Wishes, Lukas Batema


@Lukas-Batema, @PedestriaMC-Network


(Grade 10, JavaScript and Java Programmer, and Front End Web Designer)


Pedestriapedia Official BatemaDevelopment My Portfolio

Nishit278 commented 2 years ago

I hope your confusion is cleared now. feel free to open any issue if you have any other questions. closing this for now. :)

I'm facing the same issue, I have only 3 repositories where the dominant language is css, otherwise most of my repos are in either javascript or python. but it shows that my most used language is css which is 98%

luni-moon commented 2 years ago

I hope your confusion is cleared now. feel free to open any issue if you have any other questions. closing this for now. :)

I'm facing the same issue, I have only 3 repositories where the dominant language is css, otherwise most of my repos are in either javascript or python.

but it shows that my most used language is css which is 98%

That should be logical... How many are public repos?

gilsonjuniorpro commented 2 years ago

I am facing the same issue and I have at least 52 public repos with different languages

rickstaa commented 2 years ago

@gilsonjuniorpro, does https://github.com/anuraghazra/github-readme-stats/discussions/1910 solve your problem?

gilsonjuniorpro commented 2 years ago

unfortunately not @rickstaa my profile keeps should just Kotlin as language, which is weird to me because this code was there for a long time.

https://github-readme-stats.vercel.app/api/top-langs/?username=gilsonjuniorpro&layout=compact&langs_count=5&theme=dark

rickstaa commented 2 years ago

@gilsonjuniorpro Can you let me know what you receive when you use 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
            }
          }
        }
      }
    }
  }
}

with the following variables:

{"login": "gilsonjuniorpro"}
gilsonjuniorpro commented 2 years ago

yeah, sure

{
  "data": {
    "viewer": {
      "login": "gilsonjuniorpro"
    },
    "user": {
      "repositories": {
        "nodes": [
          {
            "name": "coursera",
            "languages": {
              "edges": [
                {
                  "size": 88624,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "Eroad",
            "languages": {
              "edges": [
                {
                  "size": 131126,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "Android",
            "languages": {
              "edges": [
                {
                  "size": 59698,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "nanodegree_android_basics",
            "languages": {
              "edges": [
                {
                  "size": 164278,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "ExamplePermissions",
            "languages": {
              "edges": [
                {
                  "size": 4385,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "Imei",
            "languages": {
              "edges": [
                {
                  "size": 5723,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "BottomSheet",
            "languages": {
              "edges": [
                {
                  "size": 5566,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "Notification",
            "languages": {
              "edges": [
                {
                  "size": 5590,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "MyFirstKotlinApplication",
            "languages": {
              "edges": [
                {
                  "size": 1581,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "VerificaAppInstalado",
            "languages": {
              "edges": [
                {
                  "size": 2674,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "SpaceBattle",
            "languages": {
              "edges": [
                {
                  "size": 46419,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "GoogleLogin",
            "languages": {
              "edges": [
                {
                  "size": 4924,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "DataBinding",
            "languages": {
              "edges": [
                {
                  "size": 2166,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "Palindromo",
            "languages": {
              "edges": [
                {
                  "size": 2056,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "StarWars",
            "languages": {
              "edges": [
                {
                  "size": 6481,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Arch",
            "languages": {
              "edges": [
                {
                  "size": 2520,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "NewMaterial",
            "languages": {
              "edges": [
                {
                  "size": 1268,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "AcessarWebService",
            "languages": {
              "edges": [
                {
                  "size": 6884,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "PostsRetrofit",
            "languages": {
              "edges": [
                {
                  "size": 7298,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Note",
            "languages": {
              "edges": [
                {
                  "size": 13536,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "welcomeflutter",
            "languages": {
              "edges": [
                {
                  "size": 3181,
                  "node": {
                    "color": "#00B4AB",
                    "name": "Dart"
                  }
                },
                {
                  "size": 753,
                  "node": {
                    "color": "#438eff",
                    "name": "Objective-C"
                  }
                },
                {
                  "size": 371,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "PlainNotes",
            "languages": {
              "edges": [
                {
                  "size": 22920,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "LifeCycle",
            "languages": {
              "edges": [
                {
                  "size": 3503,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "ShareData",
            "languages": {
              "edges": [
                {
                  "size": 2372,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "DiceRoller",
            "languages": {
              "edges": [
                {
                  "size": 1969,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "ActivityForResult",
            "languages": {
              "edges": [
                {
                  "size": 2748,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "first",
            "languages": {
              "edges": [
                {
                  "size": 6719,
                  "node": {
                    "color": "#00B4AB",
                    "name": "Dart"
                  }
                },
                {
                  "size": 753,
                  "node": {
                    "color": "#438eff",
                    "name": "Objective-C"
                  }
                },
                {
                  "size": 360,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "second",
            "languages": {
              "edges": [
                {
                  "size": 2672,
                  "node": {
                    "color": "#00B4AB",
                    "name": "Dart"
                  }
                },
                {
                  "size": 753,
                  "node": {
                    "color": "#438eff",
                    "name": "Objective-C"
                  }
                },
                {
                  "size": 362,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "APIRest",
            "languages": {
              "edges": [
                {
                  "size": 6913,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "ContactReader",
            "languages": {
              "edges": [
                {
                  "size": 6463,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "CustomAlertDialog",
            "languages": {
              "edges": [
                {
                  "size": 2348,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "ProgressDialog",
            "languages": {
              "edges": [
                {
                  "size": 1968,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Dashboard",
            "languages": {
              "edges": [
                {
                  "size": 1871,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "WorkingWithBluetooth",
            "languages": {
              "edges": [
                {
                  "size": 6449,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Whisper",
            "languages": {
              "edges": [
                {
                  "size": 30471,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Salmos",
            "languages": {
              "edges": [
                {
                  "size": 1139175,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                },
                {
                  "size": 14229,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "NavigationDemo",
            "languages": {
              "edges": [
                {
                  "size": 4574,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "VerifyCharacter",
            "languages": {
              "edges": [
                {
                  "size": 1944,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "FragmentExample",
            "languages": {
              "edges": [
                {
                  "size": 4266,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Make",
            "languages": {
              "edges": [
                {
                  "size": 253536,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "PureScore",
            "languages": {
              "edges": [
                {
                  "size": 108812,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                },
                {
                  "size": 31877,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Random",
            "languages": {
              "edges": [
                {
                  "size": 6474,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                },
                {
                  "size": 4749,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "ConversorMoeda",
            "languages": {
              "edges": [
                {
                  "size": 3628,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "conversor_moeda",
            "languages": {
              "edges": [
                {
                  "size": 4515,
                  "node": {
                    "color": "#00B4AB",
                    "name": "Dart"
                  }
                },
                {
                  "size": 753,
                  "node": {
                    "color": "#438eff",
                    "name": "Objective-C"
                  }
                },
                {
                  "size": 372,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "GreatestYear",
            "languages": {
              "edges": [
                {
                  "size": 1708,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "NearZero",
            "languages": {
              "edges": [
                {
                  "size": 3190,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "PassingDataBetweenFragment",
            "languages": {
              "edges": [
                {
                  "size": 6178,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "NoActionBarApp",
            "languages": {
              "edges": [
                {
                  "size": 1864,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "ToDoASAP",
            "languages": {
              "edges": [
                {
                  "size": 33559,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "MaisBrinquedos",
            "languages": {
              "edges": [
                {
                  "size": 117322,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "CodingChallenge",
            "languages": {
              "edges": [
                {
                  "size": 18475,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "AmigoOculto",
            "languages": {
              "edges": [
                {
                  "size": 13111,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "GoTTrivia",
            "languages": {
              "edges": [
                {
                  "size": 26664,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "maisbrinquedos-php",
            "languages": {
              "edges": [
                {
                  "size": 268781,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                }
              ]
            }
          },
          {
            "name": "BurstingBalloons",
            "languages": {
              "edges": [
                {
                  "size": 52704,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                },
                {
                  "size": 13418,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "GasControl",
            "languages": {
              "edges": [
                {
                  "size": 63591,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "SendData",
            "languages": {
              "edges": [
                {
                  "size": 2807,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "CarrotIntroSlider",
            "languages": {
              "edges": [
                {
                  "size": 8036,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "CarrotQrCode",
            "languages": {
              "edges": [
                {
                  "size": 3580,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "AdjustApp",
            "languages": {
              "edges": [
                {
                  "size": 2184,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "stringer",
            "languages": {
              "edges": [
                {
                  "size": 351841,
                  "node": {
                    "color": "#563d7c",
                    "name": "CSS"
                  }
                },
                {
                  "size": 21086,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                },
                {
                  "size": 11819,
                  "node": {
                    "color": "#e34c26",
                    "name": "HTML"
                  }
                },
                {
                  "size": 2199,
                  "node": {
                    "color": "#f1e05a",
                    "name": "JavaScript"
                  }
                }
              ]
            }
          },
          {
            "name": "mccafe",
            "languages": {
              "edges": [
                {
                  "size": 11350,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                }
              ]
            }
          },
          {
            "name": "serion-php",
            "languages": {
              "edges": [
                {
                  "size": 457937,
                  "node": {
                    "color": "#563d7c",
                    "name": "CSS"
                  }
                },
                {
                  "size": 71313,
                  "node": {
                    "color": "#f1e05a",
                    "name": "JavaScript"
                  }
                },
                {
                  "size": 61941,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                },
                {
                  "size": 24244,
                  "node": {
                    "color": "#e34c26",
                    "name": "HTML"
                  }
                }
              ]
            }
          },
          {
            "name": "make-php",
            "languages": {
              "edges": [
                {
                  "size": 140398,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                }
              ]
            }
          },
          {
            "name": "qrcode",
            "languages": {
              "edges": [
                {
                  "size": 1611,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                }
              ]
            }
          },
          {
            "name": "investigacao",
            "languages": {
              "edges": [
                {
                  "size": 50499,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                }
              ]
            }
          },
          {
            "name": "FitProject",
            "languages": {
              "edges": [
                {
                  "size": 15728,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "RaptorsWatermark",
            "languages": {
              "edges": [
                {
                  "size": 12494,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "PalindromeVerify",
            "languages": {
              "edges": [
                {
                  "size": 2189,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "MyApplication",
            "languages": {
              "edges": [
                {
                  "size": 3453,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "investigacao-android",
            "languages": {
              "edges": [
                {
                  "size": 770666,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "RickAndMorty",
            "languages": {
              "edges": [
                {
                  "size": 18707,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "500pxApp",
            "languages": {
              "edges": [
                {
                  "size": 16176,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Serion",
            "languages": {
              "edges": [
                {
                  "size": 129157,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "factory",
            "languages": {
              "edges": [
                {
                  "size": 144627,
                  "node": {
                    "color": "#e34c26",
                    "name": "HTML"
                  }
                },
                {
                  "size": 128593,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                },
                {
                  "size": 1318,
                  "node": {
                    "color": "#563d7c",
                    "name": "CSS"
                  }
                }
              ]
            }
          },
          {
            "name": "CustomView",
            "languages": {
              "edges": [
                {
                  "size": 4893,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "KotlinCoroutineExamples",
            "languages": {
              "edges": [
                {
                  "size": 4747,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Wattpad_first_version_2019",
            "languages": {
              "edges": [
                {
                  "size": 24662,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Billionaire",
            "languages": {
              "edges": [
                {
                  "size": 725,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "amigooculto-php",
            "languages": {
              "edges": [
                {
                  "size": 30093,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                }
              ]
            }
          },
          {
            "name": "remove-php",
            "languages": {
              "edges": [
                {
                  "size": 5463,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                }
              ]
            }
          },
          {
            "name": "PasswordStrenght",
            "languages": {
              "edges": [
                {
                  "size": 4912,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "Customize",
            "languages": {
              "edges": [
                {
                  "size": 1632,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "smooth-php",
            "languages": {
              "edges": [
                {
                  "size": 126087,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                }
              ]
            }
          },
          {
            "name": "SmoothCodeFactory",
            "languages": {
              "edges": [
                {
                  "size": 21856,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Carrot",
            "languages": {
              "edges": [
                {
                  "size": 1666564,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                },
                {
                  "size": 466,
                  "node": {
                    "color": "#89e051",
                    "name": "Shell"
                  }
                }
              ]
            }
          },
          {
            "name": "CustomButton",
            "languages": {
              "edges": [
                {
                  "size": 2333,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "ButtonDottedDashed",
            "languages": {
              "edges": [
                {
                  "size": 1491,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "NBA_Team_Shields",
            "languages": {
              "edges": [
                {
                  "size": 18231,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "IronManCompose",
            "languages": {
              "edges": [
                {
                  "size": 3868,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "BurgersPriest",
            "languages": {
              "edges": [
                {
                  "size": 8530,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "namefy",
            "languages": {
              "edges": [
                {
                  "size": 342879,
                  "node": {
                    "color": "#563d7c",
                    "name": "CSS"
                  }
                },
                {
                  "size": 27836,
                  "node": {
                    "color": "#4F5D95",
                    "name": "PHP"
                  }
                },
                {
                  "size": 2121,
                  "node": {
                    "color": "#f1e05a",
                    "name": "JavaScript"
                  }
                }
              ]
            }
          },
          {
            "name": "Customizer",
            "languages": {
              "edges": [
                {
                  "size": 21172,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                },
                {
                  "size": 1128,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "ColorsApp",
            "languages": {
              "edges": [
                {
                  "size": 1288,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "RunawaySperm",
            "languages": {
              "edges": [
                {
                  "size": 432311,
                  "node": {
                    "color": "#b07219",
                    "name": "Java"
                  }
                }
              ]
            }
          },
          {
            "name": "FlappyBird",
            "languages": {
              "edges": [
                {
                  "size": 8839,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "CustomToast",
            "languages": {
              "edges": [
                {
                  "size": 3297,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Coil",
            "languages": {
              "edges": [
                {
                  "size": 1851,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Plural",
            "languages": {
              "edges": [
                {
                  "size": 2057,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          }
        ]
      }
    }
  }
}
rickstaa commented 2 years ago

Did you deploy your own Vercel instance as was explained in https://github.com/anuraghazra/github-readme-stats#deploy-on-your-own-vercel-instance and https://github.com/anuraghazra/github-readme-stats/discussions/1770? :thinking: The public instance does not have access to your private repositories. When I try to read your data, I get the following response:

{
  "data": {
    "user": {
      "repositories": {
        "nodes": [
          {
            "name": "IronManCompose",
            "languages": {
              "edges": [
                {
                  "size": 3868,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          },
          {
            "name": "Plural",
            "languages": {
              "edges": [
                {
                  "size": 2057,
                  "node": {
                    "color": "#A97BFF",
                    "name": "Kotlin"
                  }
                }
              ]
            }
          }
        ]
      }
    }
  }
}
gilsonjuniorpro commented 2 years ago

But I have 52 public repos and they have dart, kotlin and also java as main languages, why is not getting this?

rickstaa commented 2 years ago

@gilsonjuniorpro I'm not sure what goes wrong. Maybe there are problems with the GraphQL API. I checked your profile, and you have the following non-forked (i.e. we currently don't count forks) public repositories (see https://github.com/gilsonjuniorpro?language=&page=1&q=&sort=&tab=repositories&type=source). The public Vercel instance and GraphQL explorer should at least show dart, Kotlin and Batchfile (see https://github.com/github/linguist/blob/master/lib/linguist/languages.yml).

[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=gilsonjuniorpro)](https://github.com/anuraghazra/github-readme-stats)

Top Langs

It, therefore, looks like something went wrong on GitHub's side. I think, like @emjose in https://github.com/anuraghazra/github-readme-stats/discussions/1910#discussioncomment-3477715, your best bet is to contact Github Support (i.e. https://support.github.com/)) or wait till the issue is resolved.

gilsonjuniorpro commented 2 years ago

Thanks for your help @rickstaa I will keep trying and also contact GitHub support

Kamsi-yonna commented 1 year ago

@gilsonjuniorpro I'm not sure what goes wrong. Maybe there are problems with the GraphQL API. I checked your profile, and you have the following non-forked (i.e. we currently don't count forks) public repositories (see https://github.com/gilsonjuniorpro?language=&page=1&q=&sort=&tab=repositories&type=source). The public Vercel instance and GraphQL explorer should at least show dart, Kotlin and Batchfile (see https://github.com/github/linguist/blob/master/lib/linguist/languages.yml).

[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=gilsonjuniorpro)](https://github.com/anuraghazra/github-readme-stats)

Top Langs

It, therefore, looks like something went wrong on GitHub's side. I think, like @emjose in #1910 (reply in thread), your best bet is to contact Github Support (i.e. https://support.github.com/)) or wait till the issue is resolved.

Hey I think this worked for me

chrisolivos commented 1 year ago

Hello,

I am trying to use the top languages card, but it is not showing the detail, here is the link I am using: https://github-readme-stats.vercel.app/api/top-langs?username=chrisolivos&show_icons=true&locale=en&layout=compact&langs_count=8

image

When I review a repo information I do see the languages percentage as it's being shown below

image