mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-11-20 21:40:50 -05:00
fix graphql type mismatch
This commit is contained in:
@@ -78,7 +78,7 @@ export const getStaticProps: GetStaticProps = async () => {
|
|||||||
// https://docs.github.com/en/graphql/reference/objects#repository
|
// https://docs.github.com/en/graphql/reference/objects#repository
|
||||||
const { user } = await graphql(
|
const { user } = await graphql(
|
||||||
`
|
`
|
||||||
query ($username: String!, $sort: String, $limit: Int) {
|
query ($username: String!, $sort: RepositoryOrderField!, $limit: Int) {
|
||||||
user(login: $username) {
|
user(login: $username) {
|
||||||
repositories(
|
repositories(
|
||||||
first: $limit
|
first: $limit
|
||||||
|
|||||||
Reference in New Issue
Block a user