1

Is there a way to query reactions filtering on issue number and user?

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

Jeremy Danyow
  • 26,470
  • 12
  • 87
  • 133

2 Answers2

1

Not at the moment, but you can request this functionality by creating a new post here and tagging the post as a schema-request.

bswinnerton
  • 4,533
  • 8
  • 41
  • 56
0

No, unfortunately github graphql api doesn't provide this capability to query reactions by known user in this context.

falinsky
  • 7,229
  • 3
  • 32
  • 56