按问题编号和用户查询反应

时间:2017-11-06 03:46:03

标签: graphql github-api github-graphql

有没有办法查询对问题编号和用户进行过滤的反应?

{
  repository(owner: "w3c", name: "webcomponents") {
    issue(number: 688) {
      title
      reactions(last: 100) {    <--- I want to filter on user here
        edges {
          node {
            user {
              login
            }
            content
            id
          }
        }
      }
    }
  }
}

https://developer.github.com/v4/explorer/

2 个答案:

答案 0 :(得分:1)

目前不是,但您可以通过创建新帖子here并将帖子标记为schema-request来请求此功能。

答案 1 :(得分:0)

不,不幸的是,github graphql api不提供此功能来查询已知用户在此上下文中的反应。