@@ -28982,6 +28982,31 @@ type ReactionGroup {
2898228982 """
2898328983 createdAt: DateTime
2898428984
28985+ """
28986+ Reactors to the reaction subject with the emotion represented by this reaction group.
28987+ """
28988+ reactors(
28989+ """
28990+ Returns the elements in the list that come after the specified cursor.
28991+ """
28992+ after: String
28993+
28994+ """
28995+ Returns the elements in the list that come before the specified cursor.
28996+ """
28997+ before: String
28998+
28999+ """
29000+ Returns the first _n_ elements from the list.
29001+ """
29002+ first: Int
29003+
29004+ """
29005+ Returns the last _n_ elements from the list.
29006+ """
29007+ last: Int
29008+ ): ReactorConnection!
29009+
2898529010 """
2898629011 The subject that was reacted to.
2898729012 """
@@ -29011,6 +29036,9 @@ type ReactionGroup {
2901129036 """
2901229037 last: Int
2901329038 ): ReactingUserConnection!
29039+ @deprecated(
29040+ reason: "Reactors can now be mannequins, bots, and organizations. Use the `reactors` field instead. Removal on 2021-10-01 UTC."
29041+ )
2901429042
2901529043 """
2901629044 Whether or not the authenticated user has left a reaction on the subject.
@@ -29043,6 +29071,56 @@ enum ReactionOrderField {
2904329071 CREATED_AT
2904429072}
2904529073
29074+ """
29075+ Types that can be assigned to reactions.
29076+ """
29077+ union Reactor = Bot | Mannequin | Organization | User
29078+
29079+ """
29080+ The connection type for Reactor.
29081+ """
29082+ type ReactorConnection {
29083+ """
29084+ A list of edges.
29085+ """
29086+ edges: [ReactorEdge]
29087+
29088+ """
29089+ A list of nodes.
29090+ """
29091+ nodes: [Reactor]
29092+
29093+ """
29094+ Information to aid in pagination.
29095+ """
29096+ pageInfo: PageInfo!
29097+
29098+ """
29099+ Identifies the total count of items in the connection.
29100+ """
29101+ totalCount: Int!
29102+ }
29103+
29104+ """
29105+ Represents an author of a reaction.
29106+ """
29107+ type ReactorEdge {
29108+ """
29109+ A cursor for use in pagination.
29110+ """
29111+ cursor: String!
29112+
29113+ """
29114+ The author of the reaction.
29115+ """
29116+ node: Reactor!
29117+
29118+ """
29119+ The moment when the user made the reaction.
29120+ """
29121+ reactedAt: DateTime!
29122+ }
29123+
2904629124"""
2904729125Represents a 'ready_for_review' event on a given pull request.
2904829126"""
0 commit comments