INTERFACE
MemberChangeLog
A log regarding member change event of a channel
link GraphQL Schema definition
1 interface MemberChangeLog { 2 3 # The channel that has its member changed 4 Channel! : 5 6 # Globally unique identifier 7 ID! : 8 9 # The UNIX timestamp when the channel member changed (in milliseconds precision) 10 Float : 11 12 # The user that joins/leaves the channel 13 User! : 14 15 # The name of user when they join/leave the channel. 16 String! : 17 18 }