INTERFACE

MemberChangeLog

A log regarding member change event of a channel

link GraphQL Schema definition

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