INTERFACE
Reactable
Represents a subject that can be reacted on.
link GraphQL Schema definition
1 interface Reactable { 2 3 # Identifies the primary key from the database. 4 Int @deprecated( reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs." ) : 5 6 ID! : 7 8 # Are reaction live updates enabled for this subject. 9 Boolean! : 10 11 # A list of reactions grouped by content left on the subject. 12 ReactionGroup!] : [ 13 14 # A list of Reactions left on the Issue. 15 # 16 # Arguments 17 # first: Returns the first _n_ elements from the list. 18 # after: Returns the elements in the list that come after the specified global ID. 19 # last: Returns the last _n_ elements from the list. 20 # before: Returns the elements in the list that come before the specified global 21 # ID. 22 # content: Allows filtering Reactions by emoji. 23 # orderBy: Allows specifying the order in which reactions are returned. 24 ( 25 Int, : 26 String, : 27 Int, : 28 String, : 29 ReactionContent, : 30 ReactionOrder : 31 ): ReactionConnection! 32 33 # The websocket channel ID for reaction live updates. 34 String! : 35 36 # The repository associated with this reaction subject. 37 Repository! @deprecated( reason: "Future reaction subjects may not be scoped under repositories." ) : 38 39 # Can user react to this subject 40 Boolean! : 41 42 }
link Required by
- AddReactionPayloadAutogenerated return type of AddReaction
- CommitCommentRepresents a comment on a given Commit.
- IssueAn Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
- IssueCommentRepresents a comment on an Issue.
- PullRequestA repository pull request.
- PullRequestReviewCommentA review comment associated with a given repository pull request.
- ReactionGroupA group of emoji reactions to a particular piece of content.
- RemoveReactionPayloadAutogenerated return type of RemoveReaction