【发布时间】:2018-12-28 09:02:46
【问题描述】:
有没有办法只获取未归档的存储库?
{
user(login: "SrikanthBandaru") {
id
email
isHireable
name
repositories(first: 100) { # fetch only the repos that are not archived
edges {
node {
name
isArchived
shortDescriptionHTML
description
descriptionHTML
repositoryTopics(first: 10) {
edges {
node {
topic {
name
}
}
}
}
homepageUrl
url
}
}
}
}
}
【问题讨论】:
标签: graphql github-api github-graphql