MCPcopy Create free account
hub / github.com/KartikLabhshetwar/foliox / GraphQLRepository

Interface GraphQLRepository

lib/modules/github/projects.ts:94–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92`;
93
94interface 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
125export class GitHubProjectRanker {
126 private static async enrichRepositoriesWithGraphQL(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected