(token: string)
| 4 | import { parseSocialLinksFromReadme } from '@/lib/utils/readme-parser'; |
| 5 | |
| 6 | function getGraphQLClient(token: string) { |
| 7 | return graphql.defaults({ |
| 8 | headers: { |
| 9 | authorization: `Bearer ${token}`, |
| 10 | }, |
| 11 | }); |
| 12 | } |
| 13 | |
| 14 | const USER_QUERY_PUBLIC = ` |
| 15 | query($username: String!) { |
no outgoing calls
no test coverage detected