Skip to content

Non-present languages in my list #3501

Answered by qwerty541
Tachytaenius asked this question in Q&A
Discussion options

You must be logged in to vote

Hey, @Tachytaenius! We use GitHub GraphQL API under the hood to fetch stats data. It show that this repository contains PHP: https://github.com/Tachytaenius/game-boy-n-body. You can personally check the data which we receive from GitHub by running the following query in 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
            }
          }
        }
      }
 …

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@rickstaa
Comment options

Answer selected by qwerty541
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #3500 on November 23, 2023 18:45.