OBJECT

EditorEdge

Points to a user with the editor status, with metadata regarding the relationship.

link GraphQL Schema definition

1type EditorEdge {
2
3# Opaque cursor describing this edge's position in the paginated list.
4cursor: Cursor!
5
6# Timestamp of when the editor status was granted.
7grantedAt: Time!
8
9# The user who has the editor status.
10node: User
11
12}