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

Graphql 按问题编号和用户查询反应,graphql,github-api,github-graphql,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 { lo

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

{
  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
          }
        }
      }
    }
  }
}
{
存储库(所有者:“w3c”,名称:“webcomponents”){
发行(编号:688){
标题

反应(last:100){No,不幸的是,github graphql api不提供此功能来查询此上下文中已知用户的反应。

目前没有,但您可以通过创建新帖子并将帖子标记为
模式请求来请求此功能