OBJECT

RenamedEvent

Represents a 'renamed' event on a given issue or pull request or pull request.

link GraphQL Schema definition

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