OBJECT

MemberJoinLog

A log regarding a user joining a channel

link GraphQL Schema definition

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