快速开始
快速开始
值得一提的是,Github Explorer 是非常不错的在 Github GraphQL API 中实践 GraphQL 的在线练习场,也可以在 Backend-Boilerplate/graphql 中了解笔者的 GraphQL 相关模板。
query {
user(login: "wx-chevalier") {
starredRepositories {
totalCount
}
followers {
totalCount
}
repositories(first: 35) {
nodes {
id
name
descriptionHTML
forkCount
stargazers {
totalCount
}
}
}
}
}