OBJECT

SquadStreamInvitation

SquadStreamInvitation represents an invitation sent by a member of a squad stream to another user to join the squad stream.

link GraphQL Schema definition

1type SquadStreamInvitation {
2
3# When the invitation was created.
4createdAt: Time!
5
6# ID of the invitation.
7id: ID!
8
9# Network type of the invitation. This field is only non nil when the invitation
10# is fetched for User.IncomingSquadStreamInvitations.
11networkType: SquadStreamInvitationNetworkType
12
13# If the invitation's status is rejected, the reason for the rejection.
14reasonRejected: SquadStreamInvitationRejectedReason
15
16# The user that the invitation is sent to.
17recipient: User
18
19# The user that sent the invitation.
20sender: User
21
22# The squad stream that the recipient is invited to join.
23squadStream: SquadStream
24
25# The status of the invitation.
26status: SquadStreamInvitationStatus!
27
28}