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

问题描述 投票:1回答:2

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

{
  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/

graphql github-api github-graphql
2个回答
1
投票

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


0
投票

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

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.