| 100 | } |
| 101 | |
| 102 | export interface GitHubGraphQLUser { |
| 103 | login: string; |
| 104 | name: string | null; |
| 105 | bio: string | null; |
| 106 | avatarUrl: string; |
| 107 | location: string | null; |
| 108 | email: string | null; |
| 109 | websiteUrl: string | null; |
| 110 | twitterUsername: string | null; |
| 111 | company: string | null; |
| 112 | followers: { |
| 113 | totalCount: number; |
| 114 | }; |
| 115 | following: { |
| 116 | totalCount: number; |
| 117 | }; |
| 118 | repositories: { |
| 119 | totalCount: number; |
| 120 | nodes: Array<{ |
| 121 | name: string; |
| 122 | description: string | null; |
| 123 | url: string; |
| 124 | homepageUrl: string | null; |
| 125 | stargazerCount: number; |
| 126 | forkCount: number; |
| 127 | isPinned?: boolean; |
| 128 | primaryLanguage: { |
| 129 | name: string; |
| 130 | color: string; |
| 131 | } | null; |
| 132 | languages: { |
| 133 | edges: Array<{ |
| 134 | size: number; |
| 135 | node: { |
| 136 | name: string; |
| 137 | color: string; |
| 138 | }; |
| 139 | }>; |
| 140 | }; |
| 141 | repositoryTopics: { |
| 142 | nodes: Array<{ |
| 143 | topic: { |
| 144 | name: string; |
| 145 | }; |
| 146 | }>; |
| 147 | }; |
| 148 | isPrivate: boolean; |
| 149 | isFork: boolean; |
| 150 | updatedAt: string; |
| 151 | createdAt: string; |
| 152 | }>; |
| 153 | }; |
| 154 | pinnedItems: { |
| 155 | nodes: Array<{ |
| 156 | name: string; |
| 157 | description: string | null; |
| 158 | url: string; |
| 159 | homepageUrl: string | null; |
nothing calls this directly
no outgoing calls
no test coverage detected