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