OBJECT

MemberLeaveLog

A log regarding a user leaving a channel

link GraphQL Schema definition

1type MemberLeaveLog implements MemberChangeLog {
2
3# The channel in which the user left
4channel: Channel!
5
6# Globally unique identifier
7id: ID!
8
9# The UNIX timestamp when the user leave the channels (in milliseconds precision)
10timestamp: Float
11
12# The user that leaves the channel
13user: User!
14
15# The name of user when they leave the channel.
16user_name: String!
17
18}