我正在尝试在 Githubs GraphQL api 上运行以下查询:
{
user(login: "davekaj") {
id
repositories(first: 10, orderBy: {field: NAME, direction: ASC}) {
nodes {
ref(qualifiedName: "master") {
target {
... on Commit {
history(first: 15, author: "WHAT DO I PUT HERE") {
totalCount
nodes {
additions
author {
name
user {
id
}
}
committedDate
deletions
}
}
}
}
}
}
}
}
}
它要我过滤一个CommitAuthor
for history(author: )
。我尝试传递我的用户名或我的唯一用户 ID,但它不起作用。我本质上是在传递一个字符串,但它需要 type CommitAuthor
。我如何传递一个CommitAuthor
值?
我不清楚,我搜索了文档和架构,但找不到任何东西。
请帮忙!