gpt4 book ai didi

Github API(v3) : Sort search result by date created

转载 作者:行者123 更新时间:2023-12-01 11:18:28 25 4
gpt4 key购买 nike

我想按创建日期对我的存储库搜索结果进行排序。
这可能是一项简单的任务,但我已经挣扎了一段时间。
请帮忙 :(

最佳答案

如果 Github API Graphql v4 仍然是一个选项,你可以很容易地做到这一点,来自 the explorer :

{
user(login: "bertrandmartel") {
repositories(first: 100, orderBy: {field: CREATED_AT, direction: DESC}) {
nodes {
createdAt
name
}
}
}
}

使用 curl :

curl -H "Authorization: bearer token" -d '
{
"query": "query { user(login: \"bertrandmartel\") { repositories(first: 100, orderBy: {field: CREATED_AT, direction: DESC}) { nodes { createdAt name } } } }"
}
' https://api.github.com/graphql

关于Github API(v3) : Sort search result by date created,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47255773/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com