OBJECT
ClipRelatedClips
There are different algorithms that return a different set of related clips. They only return up to 4 clips per list.
link GraphQL Schema definition
1 type ClipRelatedClips { 2 3 # Up-to 4 randomly selected, top viewed clips from the same broadcaster created 4 # within the last 4 days. 5 : [Clip!] 6 7 # Up-to 10 clips, in order, combined from the other returned clip sets. 8 # Clips are included in the priority of similar, broadcaster, game, and then top. 9 : [Clip!] 10 11 # Up-to 4 randomly selected, top viewed clips from the same user created within 12 # the last 4 days. 13 : [Clip!] 14 15 # Up-to 4 randomly selected, top viewed clips from the same game created within 16 # the last 4 days. 17 : [Clip!] 18 19 # Up-to 4 similar clips, based on the recommendations service. 20 # Deprecated: The underlying recommendations service that determined similar clips 21 # has been deprecated. 22 : [Clip!] @deprecated( reason: "Similar clips relied on a deprecated backend service." ) 23 24 # Up-to 4 randomly selected, top viewed clips created within the last 4 days. 25 : [Clip!] 26 27 }