Getting All Streamers for Game

Keep looping until the next offset returns nothing in “streams”.

my usual breaker is something like the below. It doesn’t have a “cursor”, so just use the next link and iterate until the stream object returns no values or null. Just make sure this is the first thing the new data of the iteration hits. Otherwise you’ll get unexpected results.

if(streams.value == null) 
{
    //handle your breaker 
   break; //or return whatever suits your needs. Important 
}
//Handle your stream object

It’s a pretty basic view on it, but yeah, it works.