-
Describe the bug
I have created my Vercel instance and am using it but my languages card does not show anything. It used to work properly, but it hasn't worked since a few days ago |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@2huiju Thanks for your issue. I checked your account, and it looks like the results shown on the card are correct. You can see this in action 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": "2huiju"} There is only one repository that shows up, namely |
Beta Was this translation helpful? Give feedback.
@2huiju Thanks for your issue. I checked your account, and it looks like the results shown on the card are correct. You can see this in action by using the following query in the graphql explorer:
You can then use the following in the query variables field.
T…