OBJECT

Raid

A raid represents a broadcaster directing their viewers to another channel in a synchronized "raid" on the channel after a countdown during which each viewer has a chance to opt out of the raid.

Raids are created by a broadcaster from their dashbboard where they can search and select the channel they wish to target. Once selected the raid takes counts down to prepare after which the broadcaster can tell the raid to "Go", redirecting all joined raiders to the target channel.

link GraphQL Schema definition

1type Raid {
2
3# Timestamp of raid announcement.
4announceAt: Time
5
6# Timestamp of raid go time.
7goAt: Time
8
9# The ID of the raid.
10id: ID!
11
12# Channel hosting the raid.
13sourceChannel: User
14
15# Target of the raid.
16targetChannel: User
17
18# Number of viewers in raid.
19viewerCount: Int
20
21}