| 92 | `; |
| 93 | |
| 94 | interface GraphQLRepository { |
| 95 | name: string; |
| 96 | description: string | null; |
| 97 | url: string; |
| 98 | homepageUrl: string | null; |
| 99 | stargazerCount: number; |
| 100 | forkCount: number; |
| 101 | primaryLanguage: { |
| 102 | name: string; |
| 103 | color: string; |
| 104 | } | null; |
| 105 | languages: { |
| 106 | edges: Array<{ |
| 107 | size: number; |
| 108 | node: { |
| 109 | name: string; |
| 110 | color: string; |
| 111 | }; |
| 112 | }>; |
| 113 | }; |
| 114 | repositoryTopics: { |
| 115 | nodes: Array<{ |
| 116 | topic: { |
| 117 | name: string; |
| 118 | }; |
| 119 | }>; |
| 120 | }; |
| 121 | updatedAt: string; |
| 122 | createdAt: string; |
| 123 | } |
| 124 | |
| 125 | export class GitHubProjectRanker { |
| 126 | private static async enrichRepositoriesWithGraphQL( |
nothing calls this directly
no outgoing calls
no test coverage detected