OBJECT
RenamedEvent
Represents a 'renamed' event on a given issue or pull request or pull request.
link GraphQL Schema definition
1 type RenamedEvent implements Node, IssueEvent { 2 3 # Identifies the actor (user) associated with the event. 4 User! : 5 6 # Identifies the date and time when the object was created. 7 DateTime! : 8 9 # Identifies the current title of the issue or pull request. 10 String! : 11 12 ID! : 13 14 # Identifies the issue associated with the event. 15 Issue! : 16 17 # Identifies the previous title of the issue or pull request. 18 String! : 19 20 # Identifies the repository associated with the event. 21 Repository! : 22 23 # Identifies the event type associated with the event. 24 IssueEventType! : 25 26 }