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